blob: d3d920a0b4f15b8ec5f1414d6602dbb84272bf70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: update pacman cache
pacman:
update_cache: yes
- name: install packages for admins
pacman:
name: '{{ item }}'
state: present
with_items:
- rxvt-unicode-terminfo
- bash-completion
- vim
- htop
|