mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Shorted generic- to gen-
This commit is contained in:
22
roles/gen-aur-helper/tasks/main.yml
Normal file
22
roles/gen-aur-helper/tasks/main.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
- name: install yay
|
||||
community.general.pacman:
|
||||
name:
|
||||
- yay
|
||||
- patch
|
||||
- base-devel
|
||||
state: present
|
||||
|
||||
- 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'
|
||||
create: yes
|
||||
validate: 'visudo -cf %s'
|
Reference in New Issue
Block a user