Files
computer-playbook/roles/update-compose/tasks/01_core.yml
Kevin Veen-Birkenbach 445c94788e Refactor: consolidate pkgmgr updates and remove legacy roles
Details:
- Added pkgmgr update task directly in pkgmgr role (pkgmgr pull --all)
- Removed deprecated update-pkgmgr role and references
- Removed deprecated update-pip role and references
- Simplified update-compose by dropping update-pkgmgr include

https://chatgpt.com/share/68bbeff1-27a0-800f-bef3-03ab597595fd
2025-09-06 10:46:39 +02:00

47 lines
1.0 KiB
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: "Check if yay is installed"
command: which yay
register: yay_installed
changed_when: false
failed_when: false
- name: "Update with yay"
include_role:
name: update-yay
when:
- yay_installed.rc == 0
- run_once_update_yay is not defined
- name: "Check if pip is installed"
command: which pip
register: pip_installed
changed_when: false
failed_when: false
- name: "Update with pip"
include_role:
name: update-pip
when:
- run_once_update_pip is not defined
- name: "Check if pkgmgr command is available"
command: "which pkgmgr"
register: pkgmgr_available
failed_when: false