-redo of some roles, particularly GUI -modifications to support working from a "Raspbian Lite" install
11 lines
228 B
YAML
11 lines
228 B
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- lineinfile:
|
|
path: /etc/sudoers
|
|
state: present
|
|
regexp: '^%sudo'
|
|
line: '%sudo ALL=(ALL) NOPASSWD: ALL'
|
|
validate: 'visudo -cf %s'
|
|
become: true
|