mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
31 lines
737 B
YAML
31 lines
737 B
YAML
---
|
|
- name: "Check if {{ path_docker_compose_instances }} directory exists"
|
|
stat:
|
|
path: "{{ path_docker_compose_instances }}"
|
|
register: docker_compose_directory_stat
|
|
|
|
- name: "Update with pacman"
|
|
include_role:
|
|
name: update-pacman
|
|
when: ansible_distribution == 'Archlinux'
|
|
|
|
- name: "Update with apt"
|
|
include_role:
|
|
name: update-apt
|
|
when: ansible_distribution == "Debian"
|
|
|
|
- name: "Update Docker Images"
|
|
include_role:
|
|
name: update-docker
|
|
when: docker_compose_directory_stat.stat.exists
|
|
|
|
- name: "Check if yay is installed"
|
|
command: which yay
|
|
ignore_errors: yes
|
|
register: yay_installed
|
|
changed_when: false
|
|
|
|
- name: "Update with yay"
|
|
include_role:
|
|
name: update-yay
|
|
when: yay_installed.rc == 0 |