ansible/roles/common/tasks/packages.yml

10 lines
229 B
YAML
Raw Normal View History

# Install our baseline packages for all machines, irrespective of what role they might have
2018-12-15 03:30:42 +00:00
---
- name: Install baseline packages
apt: name={{ item }} state=present
with_items:
- aptitude
- git
- python
2018-12-18 01:13:33 +00:00
- man