10 lines
317 B
YAML
10 lines
317 B
YAML
---
|
|
|
|
- name: "Install module {{ item.name }}"
|
|
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 }}"
|