summaryrefslogtreecommitdiffstats
path: root/roles/taskotron/ssl-taskotron
diff options
context:
space:
mode:
authorPatrick Uiterwijk <puiterwijk@redhat.com>2015-11-04 23:40:01 +0000
committerPatrick Uiterwijk <puiterwijk@redhat.com>2015-11-04 23:40:01 +0000
commit08568865fe2b4b20f9c1a02f884051f47eb308c8 (patch)
tree186db4b88c07e2d48d04cb82fff13b8b8d1be41d /roles/taskotron/ssl-taskotron
parent826315206defe61e742669878de0debf7c7bbf0d (diff)
downloadansible-08568865fe2b4b20f9c1a02f884051f47eb308c8.tar.gz
ansible-08568865fe2b4b20f9c1a02f884051f47eb308c8.tar.xz
ansible-08568865fe2b4b20f9c1a02f884051f47eb308c8.zip
Replace all restart httpd with reload httpd
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'roles/taskotron/ssl-taskotron')
-rw-r--r--roles/taskotron/ssl-taskotron/tasks/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/taskotron/ssl-taskotron/tasks/main.yml b/roles/taskotron/ssl-taskotron/tasks/main.yml
index 80826c02d..86335a3ef 100644
--- a/roles/taskotron/ssl-taskotron/tasks/main.yml
+++ b/roles/taskotron/ssl-taskotron/tasks/main.yml
@@ -21,11 +21,11 @@
template: src=ssl.conf.rhel.j2 dest=/etc/httpd/conf.d/ssl.conf owner=root group=root mode=0644
when: is_rhel is defined
notify:
- - restart httpd
+ - reload 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 is defined
notify:
- - restart httpd
+ - reload httpd