2018-12-15 21:50:12 +00:00
|
|
|
# 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
|
2018-12-22 02:14:32 +00:00
|
|
|
apt:
|
|
|
|
name: "{{ packages }}"
|
|
|
|
state: present
|
|
|
|
update_cache: yes
|
|
|
|
vars:
|
|
|
|
packages:
|
|
|
|
- aptitude
|
|
|
|
- git
|
|
|
|
- python
|
|
|
|
- man
|
2018-12-22 03:25:01 +00:00
|
|
|
- python-pip
|
|
|
|
|
|
|
|
# Install ansible python package, because it's the latest
|
|
|
|
- name: Install ansible
|
|
|
|
pip:
|
|
|
|
name: ansible
|