formatting

This commit is contained in:
uumas
2023-09-04 02:13:17 +03:00
parent 699c667a45
commit 4e9f127210
18 changed files with 60 additions and 55 deletions

View File

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