summaryrefslogtreecommitdiffstats
path: root/roles/network/tasks/install-archlinux.yml
blob: 788febeadb15dbe025fddd32cde34851a460d9ad (plain) (blame)
1
2
3
4
5
6
7
8
---
- name: "Ensure network_packages are installed"
  become: true
  community.general.pacman:
    name: "{{ network_packages }}"
    state: "present"
    update_cache: true
  tags: [required_for_boot]