2014-04-22 14:34:37 +02:00
|
|
|
---
|
2014-10-06 01:15:56 +02:00
|
|
|
- name: Ensure Apache is installed.
|
2014-10-06 02:13:00 +02:00
|
|
|
yum:
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: installed
|
|
|
|
enablerepo: "{{ apache_enablerepo }}"
|
2014-04-22 14:34:37 +02:00
|
|
|
with_items: apache_packages
|
|
|
|
|
2014-10-06 01:15:56 +02:00
|
|
|
- name: Configure Apache.
|
2014-10-06 02:13:00 +02:00
|
|
|
lineinfile:
|
|
|
|
dest: "{{ apache_server_root }}/conf/{{ apache_daemon }}.conf"
|
|
|
|
regexp: "{{ item.regexp }}"
|
|
|
|
line: "{{ item.line }}"
|
|
|
|
state: present
|
2014-10-06 01:58:35 +02:00
|
|
|
with_items: apache_ports_configuration_items
|
2014-04-22 14:34:37 +02:00
|
|
|
notify: restart apache
|