blob: 7c55187504dd20b8bb65cc27100099fd91427942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
- name: update pacman cache
pacman:
update_cache: yes
- name: install packages for admins
pacman:
name: '{{ item }}'
state: present
with_items:
- bash-completion
- bridge-utils
- htop
- nload
- rxvt-unicode-terminfo
- screen
- tmux
- vim
- name: copy bashrc
copy:
src: bashrc
dest: /root/.bashrc
|