16 lines
303 B
YAML
16 lines
303 B
YAML
|
i# Install our baseline packages for all machines, irrespective of what role they might have
|
||
|
---
|
||
|
- name: Install baseline packages
|
||
|
apt: name={{ item }} state=present
|
||
|
with_items:
|
||
|
- vim
|
||
|
- aptitude
|
||
|
- git
|
||
|
- alpine
|
||
|
- weechat
|
||
|
- mutt
|
||
|
- python
|
||
|
- rtv
|
||
|
- lynx
|
||
|
- w3m-img
|