This commit is contained in:
2021-08-12 18:27:50 +02:00
parent 5aa28d56da
commit 31db32f1fc
8 changed files with 209 additions and 8 deletions

View File

@ -9,8 +9,8 @@
- name: Ensure python2 is present (This is necessary for ansible to work properly)
raw: test -e /usr/bin/python2 || (apt -y update && apt install -y python)
- name: Ensure python-apt is present (This is necessary for ansible to work properly)
raw: test -e /usr/bin/python2 && (apt -y update && apt install -y python-apt)
#- name: Ensure python-apt is present (This is necessary for ansible to work properly)
# raw: test -e /usr/bin/python2 && (apt -y update && apt install -y python-apt)
- name: Ensure python3 is present (This is necessary for ansible to work properly)
raw: test -e /usr/bin/python3 || (apt -y update && apt install -y python3)