From 06b3f7946ed66cb830eb030beb68d1593540dc8a Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Sat, 25 Aug 2018 10:36:37 +0200 Subject: [PATCH] Move urxvt install from dotfiles to arch_graphicals --- tasks/arch_graphicals.yml | 17 ++++++++++++++++- tasks/dotfiles.yml | 16 ---------------- tasks/sudo.yml | 2 +- 3 files changed, 17 insertions(+), 18 deletions(-) diff --git a/tasks/arch_graphicals.yml b/tasks/arch_graphicals.yml index 92c2af4..70fa503 100644 --- a/tasks/arch_graphicals.yml +++ b/tasks/arch_graphicals.yml @@ -1,4 +1,20 @@ --- +- name: Install urxvt perls + pacman: + name: urxvt-perls + state: present + +- name: Install urxvt plugins (AUR) + aur: + name: "{{ item }}" + use: makepkg + skip_installed: true + with_items: + - urxvt-fullscreen + - urxvt-resize-font-git + become: yes + become_user: aur_builder + - name: Install graphical packages pacman: name: "{{ item }}" @@ -18,7 +34,6 @@ - vlc - texlive-most - - name: Install fonts pacman: name: "{{ item }}" diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index 2aa9dfb..7902f4b 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -6,22 +6,6 @@ with_items: "{{ me }}" when: not minimal -- name: Install urxvt perls - pacman: - name: urxvt-perls - state: present - -- name: Install urxvt plugins (AUR) - aur: - name: "{{ item }}" - use: makepkg - skip_installed: true - with_items: - - urxvt-fullscreen - - urxvt-resize-font-git - become: yes - become_user: aur_builder - - name: Clone TPM (tmux plugin manager) git: repo: https://github.com/tmux-plugins/tpm diff --git a/tasks/sudo.yml b/tasks/sudo.yml index 1cee243..8ef4a11 100644 --- a/tasks/sudo.yml +++ b/tasks/sudo.yml @@ -15,7 +15,7 @@ name: sudo state: present -- name: Add local user to sudo group +- name: Add deploy user to sudo group user: name: "{{ item.username }}" groups: sudo