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