ansible/roles/shell/tasks/packages.yml

22 lines
404 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
apt: name={{ item }} state=present
with_items:
- vim
- alpine
- weechat
- mutt
- python
- rtv
- lynx
- w3m-img
- python-pip
- cowsay
- byobu
2018-12-21 23:20:29 +00:00
# Install (Bottle) python package.
- name: Install ansible
pip:
name: ansible