diff options
| author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2016-08-31 20:20:29 +0000 |
|---|---|---|
| committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2016-08-31 20:20:29 +0000 |
| commit | 6b8e2af182ed523d85ae401e0929f68055fc8922 (patch) | |
| tree | 9ed380a2f2965739d27c507a0e4224c172cadeca /roles/taskotron/ssl-taskotron | |
| parent | df9301be2098dc0e2d575f1a2f1cf0a2a7a65a4e (diff) | |
| download | ansible-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.yml | 4 |
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 |
