lint: .yml -> .yaml

This commit is contained in:
uumas
2025-01-27 04:57:37 +02:00
parent e2f5e49fe8
commit b76fce1e1f
19 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
- name: Include tasks for apt as package manager
ansible.builtin.include_tasks: apt.yml
when: ansible_pkg_mgr == 'apt'
- name: Include tasks for other package manager
ansible.builtin.include_tasks: other.yml
when: ansible_pkg_mgr != 'apt'
- name: Ensure packages defined in delete_packages not installed
ansible.builtin.package:
name: "{{ delete_packages }}"
state: absent
when: delete_packages is defined