initial commit

This commit is contained in:
Ludovic Cartier
2022-08-05 20:59:55 +02:00
commit da764e602e
19 changed files with 587 additions and 0 deletions

19
tasks/requirements.yml Normal file
View File

@@ -0,0 +1,19 @@
---
- name: update APT Cache
apt:
update_cache: yes
cache_valid_time: 3600
- name: pre-requirements install
apt:
name:
- apt-transport-https
- ca-certificates
- curl
- gnupg-agent
- software-properties-common
- python3-pip
- virtualenv
- python3-setuptools
- gnupg2
state: present