Removed buggy condition

This commit is contained in:
Kevin Veen-Birkenbach 2023-11-17 00:45:37 +01:00
parent 81b01bd7ce
commit 4660e5ace7

View File

@ -7,12 +7,12 @@
- name: "Update with pacman" - name: "Update with pacman"
include_role: include_role:
name: update-pacman name: update-pacman
when: ansible_distribution == 'Archlinux' and docker_compose_directory_stat.stat.exists when: ansible_distribution == 'Archlinux'
- name: "Update with apt" - name: "Update with apt"
include_role: include_role:
name: update-apt name: update-apt
when: ansible_distribution == "Debian" and docker_compose_directory_stat.stat.exists when: ansible_distribution == "Debian"
- name: "Update Docker Images" - name: "Update Docker Images"
include_role: include_role: