diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2018-02-10 21:32:30 +0100 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2018-02-10 21:32:30 +0100 |
commit | 17f90b1a9f5fa30c7b51c42948a0a0977a9d97c3 (patch) | |
tree | 8d0dce50920ee642ad7bf1cea4ca87ba3372bbe0 /roles | |
parent | 261732bba0fc57b016a06067e2eda270406f85eb (diff) |
removed yaourt
Diffstat (limited to 'roles')
-rw-r--r-- | roles/install_yaourt/files/10-wheel | 1 | ||||
-rw-r--r-- | roles/install_yaourt/tasks/main.yml | 27 |
2 files changed, 0 insertions, 28 deletions
diff --git a/roles/install_yaourt/files/10-wheel b/roles/install_yaourt/files/10-wheel deleted file mode 100644 index 7c499c2..0000000 --- a/roles/install_yaourt/files/10-wheel +++ /dev/null @@ -1 +0,0 @@ -%wheel ALL=(ALL) NOPASSWD: ALL diff --git a/roles/install_yaourt/tasks/main.yml b/roles/install_yaourt/tasks/main.yml deleted file mode 100644 index 4ddbcd5..0000000 --- a/roles/install_yaourt/tasks/main.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -- 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" |