Updated pc roles and implemented update-pip role

This commit is contained in:
2025-04-01 11:23:36 +02:00
parent 99f633d222
commit 4541e2d636
14 changed files with 114 additions and 75 deletions

View File

@@ -28,4 +28,15 @@
- name: "Update with yay"
include_role:
name: update-yay
when: yay_installed.rc == 0
when: yay_installed.rc == 0
- name: "Check if pip is installed"
command: which pip
ignore_errors: yes
register: pip_installed
changed_when: false
- name: "Update with pip"
include_role:
name: update-pip
when: pip_installed.rc == 0