Copy over some initial stuff
This commit is contained in:
commit
18ae3aaf4e
11 changed files with 210 additions and 0 deletions
19
roles/replace-python2/tasks/main.yml
Normal file
19
roles/replace-python2/tasks/main.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue