summaryrefslogtreecommitdiffstats
path: root/roles/taskotron/ssl-taskotron
diff options
context:
space:
mode:
authorPatrick Uiterwijk <puiterwijk@redhat.com>2016-08-31 20:20:29 +0000
committerPatrick Uiterwijk <puiterwijk@redhat.com>2016-08-31 20:20:29 +0000
commit6b8e2af182ed523d85ae401e0929f68055fc8922 (patch)
tree9ed380a2f2965739d27c507a0e4224c172cadeca /roles/taskotron/ssl-taskotron
parentdf9301be2098dc0e2d575f1a2f1cf0a2a7a65a4e (diff)
downloadansible-6b8e2af182ed523d85ae401e0929f68055fc8922.tar.gz
ansible-6b8e2af182ed523d85ae401e0929f68055fc8922.tar.xz
ansible-6b8e2af182ed523d85ae401e0929f68055fc8922.zip
Add httpd tag for taskotron
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, 4 insertions, 0 deletions
diff --git a/roles/taskotron/ssl-taskotron/tasks/main.yml b/roles/taskotron/ssl-taskotron/tasks/main.yml
index 612484b2b..e04814f3d 100644
--- a/roles/taskotron/ssl-taskotron/tasks/main.yml
+++ b/roles/taskotron/ssl-taskotron/tasks/main.yml
@@ -20,12 +20,16 @@
- 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 is defined
+ tags:
+ - httpd
notify:
- 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
+ tags:
+ - httpd
notify:
- reload httpd