adjusting conditionals for slightly different use of is_rhel and is_fedora
This commit is contained in:
parent
32a7e4163b
commit
d10f4a5e9b
1 changed files with 2 additions and 2 deletions
|
@ -11,13 +11,13 @@
|
|||
|
||||
- name: generate rhel httpd ssl config
|
||||
template: src=ssl.conf.rhel.j2 dest=/etc/httpd/conf.d/ssl.conf owner=root group=root mode=0644
|
||||
when: is_rhel
|
||||
when: is_rhel is defined
|
||||
notify:
|
||||
- restart httpd
|
||||
|
||||
- name: generate fedora httpd ssl config
|
||||
template: src=ssl.conf.j2 dest=/etc/httpd/conf.d/ssl.conf owner=root group=root mode=0644
|
||||
when: is_fedora
|
||||
when: is_fedora is defined
|
||||
notify:
|
||||
- restart httpd
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue