♻: move nextcloud to app dir
All checks were successful
ansible-lint / lint-everything (push) Successful in 4s

This commit is contained in:
VC
2025-03-09 16:53:21 +01:00
parent 75868ab216
commit a4572768b4
5 changed files with 68 additions and 29 deletions

View File

@@ -0,0 +1,10 @@
---
- name: "Install {{ item.name }} module"
become: true
become_user: www-data
ansible.builtin.command:
cmd: "php occ app:install {{ item.force | default(false) | ternary('--force', '') }} {{ item.name }}"
chdir: "{{ nextcloud_app_home }}"
creates: "{{ nextcloud_app_home }}/apps/{{ item.name }}"
changed_when: false