Decoupeled Sphinx

This commit is contained in:
2025-04-09 16:56:41 +02:00
parent fc552d1130
commit 36bf5af288
35 changed files with 107 additions and 1215 deletions

View File

@@ -39,4 +39,13 @@
- name: "Update with pip"
include_role:
name: update-pip
when: pip_installed.rc == 0
- name: "Check if pkgmgr command is available"
command: "which pkgmgr"
register: pkgmgr_available
ignore_errors: yes
- name: "Update all repositories using pkgmgr"
include_role:
name: update-pkgmgr
when: pkgmgr_available.rc == 0