Fix sudoers syntax errors

There should be no space between NOPASSWD: and /usr/in/pacman otherwise the validation fails.
pull/23/head
Stani 2019-02-28 23:39:25 +01:00 committed by GitHub
parent 8f8af5fa5f
commit 83e5725a58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ This can be done in Ansible with the following actions:
group: wheel
- lineinfile:
path: /etc/sudoers.d/11-install-aur_builder
line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman'
line: 'aur_builder ALL=(ALL) NOPASSWD:/usr/bin/pacman'
create: yes
validate: 'visudo -cf %s'
```