Fixed readme and some plays

This commit is contained in:
Elia Farin
2024-10-30 14:12:20 -05:00
parent 5f6cc4ae7b
commit 157a03738e
5 changed files with 29 additions and 5 deletions

View File

@@ -8,4 +8,10 @@
ansible.builtin.dnf:
name: "{{ item }}"
state: present
loop: "{{ dnf_packages }}"
loop: "{{ dnf_installs }}"
- name: Remove Packages
ansible.builtin.dnf:
name: "{{ item }}"
state: absent
loop: "{{ dnf_removes }}"