You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
333 B
12 lines
333 B
- name: Enable passwordless sudo access to wheel group
|
|
lineinfile:
|
|
path: /etc/sudoers
|
|
line: "%wheel ALL=(ALL) NOPASSWD: ALL"
|
|
regexp: "^#? *%wheel ALL=\\(ALL\\) NOPASSWD: ALL$"
|
|
become: yes
|
|
|
|
- name: Remove Manjaro installer sudoers override
|
|
file:
|
|
path: /etc/sudoers.d/10-installer
|
|
state: absent
|
|
become: yes
|