Debian 10 compatibility

Change inventory defaults to use the environments directory and
add what is necessary for Debian 10.
This commit is contained in:
2020-01-17 00:46:06 -05:00
parent e7f532b26b
commit 2c6171e649
5 changed files with 39 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
- name: 'Install Ansible dependency: python-apt'
shell: 'apt-get update && apt-get install python-apt -y'
args:
creates: /usr/lib/python2.7/dist-packages/apt
warn: false
- name: 'Install Ansible dependency: aptitude'
apt:
name: 'aptitude'
state: present
force_apt_get: true
- name: 'Install Ansible dependency: python-docker'
apt:
name: python-docker
state: present