adjusting conditionals for slightly different use of is_rhel and is_fedora

This commit is contained in:
Tim Flink 2014-07-03 19:36:02 +00:00
parent 32a7e4163b
commit d10f4a5e9b

View file

@ -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