15 lines
367 B
YAML
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" |