Sam A.
6a16328b7b
Added logic to change the sshd port if not already configured, configued Vagrantfile to work properly and fixed a couple of deploy errors.
23 lines
441 B
YAML
23 lines
441 B
YAML
---
|
|
- name: Install necessary packages via apt
|
|
apt:
|
|
name: "{{ packages }}"
|
|
vars:
|
|
packages:
|
|
- aptitude
|
|
- python3-pip
|
|
- apparmor
|
|
- haveged
|
|
- mosh
|
|
- srvadmin-all # Dell OpenManage
|
|
|
|
- name: Install necessary packages via pip
|
|
pip:
|
|
name: "{{ packages }}"
|
|
state: latest
|
|
vars:
|
|
packages:
|
|
- pip # upgrade needed for docker-compose to install
|
|
- docker
|
|
- docker-compose
|