2012-02-27 03:09:56 +01:00
|
|
|
---
|
2012-02-24 07:02:24 +01:00
|
|
|
- pattern: '*'
|
2012-02-28 04:48:45 +01:00
|
|
|
hosts: '/etc/ansible/hosts'
|
2012-02-24 05:54:16 +01:00
|
|
|
tasks:
|
2012-02-28 04:48:45 +01:00
|
|
|
- name: configure template & module variables for future template calls
|
|
|
|
action: setup http_port=80 max_clients=200
|
|
|
|
- name: write the apache config file
|
|
|
|
action: template src=/srv/httpd.j2 dest=/etc/httpd/conf
|
2012-02-25 20:42:41 +01:00
|
|
|
notify:
|
|
|
|
- restart apache
|
2012-02-28 04:48:45 +01:00
|
|
|
- name: ensure apache is running
|
|
|
|
action: service name=httpd state=started
|
2012-02-25 20:42:41 +01:00
|
|
|
handlers:
|
2012-02-27 02:54:51 +01:00
|
|
|
- name: restart apache
|
2012-02-28 04:48:45 +01:00
|
|
|
- action: service name=httpd state=restarted
|