Sostituzione di prepare con un playbook che viene lanciato sulla macchina locale.

This commit is contained in:
Emiliano Vavassori 2024-10-01 00:19:21 +02:00
parent 23343af106
commit 813cf57d54
78 changed files with 885 additions and 70 deletions

View file

@ -0,0 +1,11 @@
---
# pip on alpine
- name: (alp) installing pip
community.general.apk:
name:
- py3-pip
- py3-virtualenv
state: present
update_cache: true
become: true

View file

@ -0,0 +1,11 @@
---
# pip on Archlinux
- name: (arch) installing pip
community.general.pacman:
name:
- python-pip
- python-virtualenv
state: present
update_cache: true
become: true

View file

@ -0,0 +1,11 @@
---
# Pip on debian
- name: (deb) installing pip
ansible.builtin.apt:
name:
- python3-pip
- python3-virtualenv
state: present
update_cache: true
become: true

View file

@ -0,0 +1,11 @@
---
# pip on redhat
- name: (rHa) installing pip
ansible.builtin.yum:
name:
- python3-pip
- python-virtualenv
state: present
update_cache: true
become: true

View file

@ -0,0 +1,11 @@
---
# pip on void
- name: (void) installing pip
community.general.xbps:
name:
- python-pip
- python3-virtualenv
state: present
update_cache: true
become: true