blob: be4cc5e7b95187e305333e956bc4a7f2b8bd08e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
- name: "Ensure network_packages are installed"
become: true
community.general.pacman:
name: "{{ network_packages }}"
state: "present"
update_cache: true
tags: [required_for_boot]
- name: "Ensrue network_packages_removed are removed"
become: true
community.general.pacman:
name: "{{ network_packages_removed }}"
state: "absent"
extra_args: "-n" # Removes config files too
# Not required for boot
|