fix(apps): ignore comparisons on container restart, migrate to fully qualified module names

This commit is contained in:
transcaffeine 2024-07-27 21:34:33 +02:00
parent a708450260
commit 95aff397b8
Signed by: transcaffeine
GPG Key ID: 03624C433676E465
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,9 @@
---
- name: restart-nextcloud
docker_container:
community.docker.docker_container:
name: "{{ nextcloud_container_name }}"
state: started
restart: yes
restart: true
comparisons:
'*': ignore

View File

@ -1,7 +1,7 @@
---
- name: Ensure nextcloud user is created
user:
ansible.builtin.user:
name: "{{ nextcloud_run_user }}"
state: present
register: nextcloud_user_res