Use command instead of shell

This commit is contained in:
Jérémy Lecour 2016-12-23 22:45:42 +01:00
parent 66f5ae27c9
commit dc40993291
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@
state: installed
- name: Create private key and csr for default site ({{ ansible_fqdn }})
shell: openssl req -newkey rsa:2048 -sha256 -nodes -keyout /etc/ssl/private/{{ ansible_fqdn }}.key -out /etc/ssl/{{ ansible_fqdn }}.csr -batch -subj "{{ evolinux_default_www_ssl_subject }}"
command: openssl req -newkey rsa:2048 -sha256 -nodes -keyout /etc/ssl/private/{{ ansible_fqdn }}.key -out /etc/ssl/{{ ansible_fqdn }}.csr -batch -subj "{{ evolinux_default_www_ssl_subject }}"
args:
creates: "/etc/ssl/private/{{ ansible_fqdn }}.key"
@ -39,7 +39,7 @@
mode: 0640
- name: Create certificate for default site
shell: openssl x509 -req -days 3650 -sha256 -in /etc/ssl/{{ ansible_fqdn }}.csr -signkey /etc/ssl/private/{{ ansible_fqdn }}.key -out /etc/ssl/certs/{{ ansible_fqdn }}.crt
command: openssl x509 -req -days 3650 -sha256 -in /etc/ssl/{{ ansible_fqdn }}.csr -signkey /etc/ssl/private/{{ ansible_fqdn }}.key -out /etc/ssl/certs/{{ ansible_fqdn }}.crt
args:
creates: "/etc/ssl/certs/{{ ansible_fqdn }}.crt"

View file

@ -3,7 +3,7 @@
# TODO: try to use the custom mount_uuid module for a different approach
- name: Fetch fstab content
shell: "grep -v '^#' /etc/fstab"
command: "grep -v '^#' /etc/fstab"
register: fstab_content
failed_when: False
changed_when: False