diff --git a/handlers/restart_services.yml b/handlers/restart_services.yml index eca8af5d2d..3ef68b0789 100644 --- a/handlers/restart_services.yml +++ b/handlers/restart_services.yml @@ -14,6 +14,9 @@ - name: restart httpd action: service name=httpd state=restarted +- name: restart apache + action: service name=httpd state=restarted + - name: restart lighttpd action: service name=lighttpd state=restarted diff --git a/playbooks/hosts/rdo.cloud.fedoraproject.org.yml b/playbooks/hosts/rdo.cloud.fedoraproject.org.yml index cdb787b30a..bba27872fc 100644 --- a/playbooks/hosts/rdo.cloud.fedoraproject.org.yml +++ b/playbooks/hosts/rdo.cloud.fedoraproject.org.yml @@ -55,5 +55,10 @@ - name: startup apache action: service name=httpd state=started + - name: rdo.conf file for apache + action: copy src=$files/rdo/rdo.conf dest=/etc/httpd/conf.d/rdo.conf + notify: + - restart httpd + handlers: - include: $handlers/restart_services.yml