ansible/roles/common/tasks/packages.yml

10 lines
229 B
YAML

# 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:
- aptitude
- git
- python
- man