nextcloud: Korrigiere lint-Warnungen
This commit is contained in:
parent
7fbb97c73c
commit
6acf008490
1 changed files with 21 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: "common | Apache-Module laden"
|
||||
apache2_module:
|
||||
- name: "Common | Aktiviere Apache-Module"
|
||||
ansible.builtin.apache2_module:
|
||||
name: "{{ item.name }}"
|
||||
state: "{{ item.state|default('present') }}"
|
||||
loop:
|
||||
|
@ -15,42 +15,44 @@
|
|||
- name: setenvif
|
||||
notify: restart apache
|
||||
|
||||
- name: "common | Apache-Konfiguration für NC-Seiten"
|
||||
file:
|
||||
- name: "Common | Erstelle Apache-Konfiguration für NC-Seiten"
|
||||
ansible.builtin.file:
|
||||
path: /etc/apache2/conf-available/nextcloud_sites.conf
|
||||
state: touch
|
||||
mode: 0644
|
||||
|
||||
- name: "common | Apache-Vorlage für Seitenkonfiguration kopieren"
|
||||
template:
|
||||
- name: "Common | Kopiere Apache-Vorlage für Seitenkonfiguration"
|
||||
ansible.builtin.template:
|
||||
src: ../roles/nextcloud/templates/apache_site.conf.j2
|
||||
dest: /etc/apache2/sites-available/nextcloud.conf
|
||||
mode: 0644
|
||||
|
||||
- name: "common | Apache-Seitenkonfiguration aktivieren"
|
||||
file:
|
||||
src: /etc/apache2/sites-available/nextcloud.conf
|
||||
dest: /etc/apache2/sites-enabled/nextcloud.conf
|
||||
state: link
|
||||
- name: "Common | Aktiviere Apache-Seitenkonfiguration"
|
||||
ansible.builtin.command:
|
||||
cmd: a2ensite nextcloud.conf
|
||||
creates: /etc/apache2/sites-enabled/nextcloud.conf
|
||||
notify: reload apache
|
||||
|
||||
- name: "common | Kopiere PHP-CLI-Konfiguration"
|
||||
copy:
|
||||
- name: "Common | Kopiere PHP-CLI-Konfiguration"
|
||||
ansible.builtin.copy:
|
||||
src: ../roles/nextcloud/files/30-sao-nextcloud.ini
|
||||
dest: "/etc/php/{{ php_version.stdout }}/mods-available/sao-nextcloud.ini"
|
||||
mode: 0644
|
||||
|
||||
- name: "common | Aktiviere PHP-CLI-Konfiguration"
|
||||
file:
|
||||
- name: "Common | Aktiviere PHP-CLI-Konfiguration"
|
||||
ansible.builtin.file:
|
||||
src: "/etc/php/{{ php_version.stdout }}/mods-available/sao-nextcloud.ini"
|
||||
dest: "/etc/php/{{ php_version.stdout }}/cli/conf.d/30-sao-nextcloud.ini"
|
||||
state: link
|
||||
|
||||
- name: "common | Ermittle letzte Version"
|
||||
shell:
|
||||
- name: "Common | Ermittle letzte Version"
|
||||
ansible.builtin.shell:
|
||||
cmd: curl -sL "{{ nextcloud_github_api_url }}" | jq -r ".tag_name" | cut -d 'v' -f2
|
||||
changed_when: false
|
||||
register: latest_version
|
||||
|
||||
- name: "common | Kopiere Update-Skript"
|
||||
template:
|
||||
- name: "Common | Kopiere Update-Skript"
|
||||
ansible.builtin.template:
|
||||
src: ../roles/nextcloud/templates/nextcloud-updater.j2
|
||||
dest: "/usr/local/bin/nextcloud-updater"
|
||||
mode: 0755
|
||||
|
|
Loading…
Reference in a new issue