1
0
Fork 0
mash-ansible-role-nextcloud/tasks/main.yml
2023-03-17 11:34:15 +02:00

32 lines
845 B
YAML

---
- tags:
- setup-all
- setup-nextcloud
- install-all
- install-nextcloud
block:
- when: nextcloud_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
- when: nextcloud_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
- tags:
- adjust-nextcloud-config
block:
- when: nextcloud_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/adjust_config.yml"
- tags:
- print-nextcloud-db-credentials
block:
- when: nextcloud_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/print_db_credentials.yml"
- tags:
- setup-all
- setup-nextcloud
block:
- when: not nextcloud_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"