Initial commit

This commit is contained in:
2019-06-04 03:20:59 +02:00
commit 06523efab1
8 changed files with 172 additions and 0 deletions

View File

@ -0,0 +1,5 @@
- name: Ensure aptitude is present
raw: test -e /usr/bin/aptitude || apt-get install aptitude -y
- name: Ensure python2 is present (This is necessary for ansible to work properly)
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)