Compare commits

...

2 Commits

Author SHA1 Message Date
uumas
b983882add v0.5.15 2025-01-27 06:43:38 +02:00
uumas
f94c4b6208 packages: fix include error 2025-01-27 05:35:35 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
namespace: uumas namespace: uumas
name: general name: general
description: General roles description: General roles
version: 0.5.14 version: 0.5.15
readme: README.md readme: README.md
authors: authors:
- uumas - uumas

View File

@@ -1,10 +1,10 @@
--- ---
- name: Include tasks for apt as package manager - name: Include tasks for apt as package manager
ansible.builtin.include_tasks: apt.yml ansible.builtin.include_tasks: apt.yaml
when: ansible_pkg_mgr == 'apt' when: ansible_pkg_mgr == 'apt'
- name: Include tasks for other package manager - name: Include tasks for other package manager
ansible.builtin.include_tasks: other.yml ansible.builtin.include_tasks: other.yaml
when: ansible_pkg_mgr != 'apt' when: ansible_pkg_mgr != 'apt'
- name: Ensure packages defined in delete_packages not installed - name: Ensure packages defined in delete_packages not installed