Ansible_workstation/tasks/arch_aur.yml

19 lines
423 B
YAML
Raw Normal View History

2018-08-22 20:16:31 +00:00
---
- user:
name: aur_builder
group: wheel
- lineinfile:
path: /etc/sudoers.d/11-install-aur_builder
line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman'
create: yes
validate: 'visudo -cf %s'
- name: Git clone ansible-aur
git:
repo: https://github.com/kewlfft/ansible-aur.git
dest: ~/.ansible/plugins/modules/aur
version: master
accept_hostkey: yes
become_user: aur_builder