You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
439 B
YAML
19 lines
439 B
YAML
---
|
|
|
|
- name: install sudo
|
|
pacman: name=sudo state=present
|
|
|
|
- name: add sudo users to wheel
|
|
user: name="{{ item }}" append=yes groups=wheel
|
|
with_items: "{{ sudo_users }}"
|
|
tags: ['archusers']
|
|
|
|
- name: allow wheel group to use sudo
|
|
lineinfile:
|
|
dest: /etc/sudoers
|
|
state: present
|
|
regexp: '^%wheel ALL=\(ALL\) ALL'
|
|
insertafter: '^# %wheel ALL=\(ALL\) ALL'
|
|
line: '%wheel ALL=(ALL) ALL'
|
|
validate: 'visudo -cf %s'
|