mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-06-16 15:39:24 +00:00
10 lines
229 B
YAML
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
|