ansible/roles/common/tasks/packages.yml

16 lines
303 B
YAML
Raw Normal View History

2018-12-15 03:30:42 +00:00
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