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,9 @@
---
# rsync
- name: (alp) installing rsync
community.general.apk:
name: rsync
state: present
update_cache: true
become: true

View file

@ -0,0 +1,7 @@
---
- name: (arch) installing rsync
community.general.pacman:
name: rsync
state: present
update_cache: true
become: true

View file

@ -0,0 +1,7 @@
---
- name: (deb) installing rsync
ansible.builtin.apt:
name: rsync
state: present
update_cache: true
become: true

View file

@ -0,0 +1,7 @@
---
- name: (rHa) installing rsync
ansible.builtin.yum:
name: rsync
state: present
update_cache: true
become: true

View file

@ -0,0 +1,7 @@
---
- name: (void) installing rsync
community.general.xbps:
name: rsync
state: present
update_cache: true
become: true