♻: move nextcloud to app dir
All checks were successful
ansible-lint / lint-everything (push) Successful in 4s
All checks were successful
ansible-lint / lint-everything (push) Successful in 4s
This commit is contained in:
10
roles/nextcloud/tasks/nextcloud_modules.yml
Normal file
10
roles/nextcloud/tasks/nextcloud_modules.yml
Normal 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
|
Reference in New Issue
Block a user