Compare commits

..

No commits in common. "19e2864e9b3f6dd32aa3a839aac0acddc798b4d2" and "c3d3daa97dad97d8ea7862808b8236585a9184a5" have entirely different histories.

2 changed files with 0 additions and 14 deletions

View file

@ -24,7 +24,6 @@ nextcloud_overwrite_cli_url:
nextcloud_overwrite_host: nextcloud_overwrite_host:
nextcloud_overwrite_protocol: nextcloud_overwrite_protocol:
nextcloud_enable_restic_compose_backup: False nextcloud_enable_restic_compose_backup: False
nextcloud_app_list_to_install: []
restic_aws_access_key_id: restic_aws_access_key_id:
restic_aws_secret_access_key: restic_aws_secret_access_key:
restic_repository: restic_repository:

View file

@ -151,19 +151,6 @@
chdir: /home/{{ docker_user }}/nextcloud/ chdir: /home/{{ docker_user }}/nextcloud/
cmd: "docker-compose exec --user root nextcloud-app /bin/sh -c 'chown -R www-data: /var/www/html'" cmd: "docker-compose exec --user root nextcloud-app /bin/sh -c 'chown -R www-data: /var/www/html'"
- name: "docker-compose: Install Nextcloud apps (will not fail)"
shell:
chdir: /home/{{ docker_user }}/nextcloud/
cmd: docker-compose exec -u www-data nextcloud-app /bin/sh -c './occ app:install "{{ item }}"'
loop: "{{ nextcloud_app_list_to_install }}"
when: nextcloud_app_list_to_install | count
failed_when: false
register: nextcloud_app_install_result
- name: "Output app install result"
debug:
var: "{{ nextcloud_app_install_result }}"
- name: "Test whether Nextcloud is healthy from the outside" - name: "Test whether Nextcloud is healthy from the outside"
when: not ansible_check_mode when: not ansible_check_mode
become: false become: false