Create update directory if useful
https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#updatedirectory
This commit is contained in:
parent
8bc820c225
commit
be15c36d4c
1 changed files with 9 additions and 0 deletions
|
@ -19,6 +19,15 @@
|
||||||
become_user: "{{ instances.user }}"
|
become_user: "{{ instances.user }}"
|
||||||
changed_when: true
|
changed_when: true
|
||||||
|
|
||||||
|
- name: "Configuration | Erstelle Update-Verzeichnis"
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ nextcloud_update_directory }}"
|
||||||
|
state: directory
|
||||||
|
owner: "{{ instances.user }}"
|
||||||
|
group: "{{ instances.user }}"
|
||||||
|
mode: "0755"
|
||||||
|
when: nextcloud_update_directory is defined
|
||||||
|
|
||||||
- name: "Configuration | Erstelle Konfiguration | {{ instances.name }}"
|
- name: "Configuration | Erstelle Konfiguration | {{ instances.name }}"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: config.json.j2
|
src: config.json.j2
|
||||||
|
|
Loading…
Reference in a new issue