Merge pull request #67 from LorenzoBettini/patch-1

Use become: yes in the example for creating aur_builder
pull/73/head
kewl 2021-11-08 08:18:34 +00:00 committed by GitHub
commit 2c090a49a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -97,12 +97,14 @@ This user can be created in an Ansible task with the following actions:
```yaml
- name: Create the `aur_builder` user
become: yes
ansible.builtin.user:
name: aur_builder
create_home: yes
group: wheel
- name: Allow the `aur_builder` user to run `sudo pacman` without a password
become: yes
ansible.builtin.lineinfile:
path: /etc/sudoers.d/11-install-aur_builder
line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman'