summaryrefslogtreecommitdiff
path: root/roles/install_yaourt/tasks/main.yml
diff options
context:
space:
mode:
authorNiklas Yann Wettengel <niyawe@niyawe.de>2017-03-17 19:12:21 +0100
committerNiklas Yann Wettengel <niyawe@niyawe.de>2017-03-17 19:12:21 +0100
commitf4ee05f46e2cbe1865ad42dd765e271439aced42 (patch)
tree8ce80900cbbb162d70be82f58a71142e42d7d260 /roles/install_yaourt/tasks/main.yml
parente829ca802bb5819f78b8b2032c43eb04840eec23 (diff)
added setup_fastd.yml playbook
current features: - install yaourt - install packages for admins
Diffstat (limited to 'roles/install_yaourt/tasks/main.yml')
-rw-r--r--roles/install_yaourt/tasks/main.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/roles/install_yaourt/tasks/main.yml b/roles/install_yaourt/tasks/main.yml
new file mode 100644
index 0000000..4ddbcd5
--- /dev/null
+++ b/roles/install_yaourt/tasks/main.yml
@@ -0,0 +1,27 @@
+---
+- name: add aur user {{ aur_user }}
+ user:
+ name: '{{ aur_user }}'
+ group: users
+ groups: wheel
+
+- name: allow group wheel to sudo
+ copy:
+ src: 10-wheel
+ dest: /etc/sudoers.d/
+
+- name: "add archlinux.fr repository to pacman"
+ lineinfile:
+ dest: "/etc/pacman.conf"
+ state: "present"
+ line: "{{ item }}"
+ with_items:
+ - "[archlinuxfr]"
+ - "SigLevel = Never"
+ - "Server = http://repo.archlinux.fr/$arch"
+
+- name: "install yaourt"
+ pacman:
+ update_cache: yes
+ name: "yaourt"
+ state: "present"