summaryrefslogtreecommitdiffstats
path: root/roles/user/tasks/install-archlinux.yml
blob: 0813c34292b587bf079162376cebacda657323d1 (plain) (blame)
1
2
3
4
5
6
7
8
---
- name: "Ensure sudo installed"
  become: true
  community.general.pacman:
    name: "sudo"
    state: "present"
    update_cache: true
  tags: [required_for_boot]