Allgemeine Aufgaben umbenannt

This commit is contained in:
phil 2021-08-18 20:58:26 +02:00
parent 9c203bba17
commit 71e74f67bf

22
tasks/common.yml Normal file
View file

@ -0,0 +1,22 @@
---
- name: "common: Apache-Module laden"
apache2_module:
state: present
name: "{{ item }}"
with_items:
- macro
- proxy_fcgi
- setenvif
notify: restart apache
- name: "common: Apache-Vorlage für Seitenkonfiguration kopieren"
copy:
src: roles/nextcloud/files/apache_site.conf
dest: /etc/apache2/sites-available/nextcloud.conf
- name: "common: Apache-Seitenkonfiguration aktivieren"
file:
src: /etc/apache2/sites-available/nextcloud.conf
dest: /etc/apache2/sites-enabled/nextcloud.conf
state: link
notify: reload apache