From 07e5fe301f2ac065bb78a53baf95beb229c7d3b3 Mon Sep 17 00:00:00 2001 From: Lorenzo Bettini Date: Sun, 7 Nov 2021 13:08:56 +0100 Subject: [PATCH] Use become: yes in the example for creating aur_builder It is my understanding that for creating the `aur_builder` you have to become root; maybe that's something one does in the whole playbook, but if one wants to specify that only when it's needed, the example could be improved as suggested, so that it's self-contained and can be simply copied and pasted. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 14a7419..f6c6144 100644 --- a/README.md +++ b/README.md @@ -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'