Files
EX407-Ansible-Automation/playbooks/handler_playbook.yml
Ilgar_Naghiyev 88ad588cf3 part 1 completed
2020-03-03 14:44:22 +01:00

15 lines
367 B
YAML

---
- hosts: labservers
become: yes
handlers:
- name: restart apache
service: name="httpd" state="restarted"
listen: "restart web"
tasks:
- name: change config
replace:
path: /etc/httpd/conf/httpd.conf
regexp: '^DocumentRoot.*$'
replace: 'DocumentRoot "/opt/www"'
backup: yes
notify: "restart web"