aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/apache/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/roles/apache/tasks/main.yml')
-rw-r--r--ansible/roles/apache/tasks/main.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/ansible/roles/apache/tasks/main.yml b/ansible/roles/apache/tasks/main.yml
new file mode 100644
index 0000000..2bb953d
--- /dev/null
+++ b/ansible/roles/apache/tasks/main.yml
@@ -0,0 +1,32 @@
+- become: yes
+ tags:
+ - apache
+ block:
+ - name: packages
+ vars:
+ items:
+ - apache2
+ apt:
+ name: "{{ items }}"
+ install_recommends: no
+
+- become: yes
+ tags:
+ - apache
+ - apache-config
+ block:
+ - name: "fill /etc/apache2"
+ with_items: "{{ apache__copy }}"
+ when: item is defined and item
+ notify: systemctl reload apache
+ copy:
+ dest: "/etc/apache2/{{ item }}"
+ src: "{{ item }}"
+
+ - name: "fill /etc/apache2"
+ with_items: "{{ apache__template }}"
+ when: item is defined and item
+ notify: systemctl reload apache
+ template:
+ dest: "/etc/apache2/{{ item|replace(apache__template_prefix, '') }}"
+ src: "{{ item }}"