ansible-role-nextcloud/tasks/common.yml

44 lines
1.2 KiB
YAML
Raw Normal View History

---
- 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
2021-08-23 15:39:15 +02:00
- 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
- name: "common | Kopiere PHP-CLI-Konfiguration"
copy:
src: ../roles/nextcloud/files/30-sao.ini
dest: "/etc/php/{{ php_version.stdout }}/cli/conf.d/30-sao.ini"
2021-08-18 21:08:44 +02:00
- name: "common | Kopiere Update-Skript"
2021-08-18 21:08:44 +02:00
template:
src: ../roles/nextcloud/templates/nextcloud-updater.j2
2021-08-18 21:08:44 +02:00
dest: "{{ local_scripts_dir }}/nextcloud-updater"
mode: 0755
- name: "common | Erstelle munin-Verzeichnis"
file:
path: "{{ local_munin_path }}"
state: directory
- name: "common | Kopiere munin-Daten"
get_url:
url: https://raw.githubusercontent.com/munin-monitoring/contrib/master/plugins/nextcloud/nextcloud_
dest: "{{ local_munin_path }}/nextcloud_"
mode: 0755