phil 2024-05-04 19:35:58 +02:00
parent 8bc820c225
commit be15c36d4c

View file

@ -19,6 +19,15 @@
become_user: "{{ instances.user }}"
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 }}"
ansible.builtin.template:
src: config.json.j2