ansible/roles/shell/tasks/packages.yml

25 lines
449 B
YAML
Raw Normal View History

2018-12-21 14:59:42 +00:00
# Install our baseline packages for all machines, irrespective of what role they might have
---
- name: Install baseline packages
2018-12-22 02:14:32 +00:00
apt:
name: "{{ packages }}"
state: present
update_cache: yes
vars:
packages:
- vim
- alpine
- weechat
- mutt
- python
- rtv
- lynx
- w3m-img
- python-pip
- cowsay
- byobu
- bsdgames
- emacs
2018-12-22 23:06:31 +00:00
- elinks
- pandoc