Copy over some initial stuff

This commit is contained in:
Jef Roosens 2022-11-12 12:21:39 +01:00
commit 18ae3aaf4e
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
11 changed files with 210 additions and 0 deletions

View file

@ -0,0 +1,19 @@
---
- name: 'Install Python 3'
apt:
name:
- python3
- python3-pip
state: present
- name: 'Remove Python 2.'
apt:
name:
- python
- python2
- python2.7
- python-minimal
- python2-minimal
- python2.7-minimal
state: absent
purge: true