Sostituzione di prepare con un playbook che viene lanciato sulla macchina locale.
This commit is contained in:
parent
23343af106
commit
813cf57d54
78 changed files with 885 additions and 70 deletions
9
roles/rsync/tasks/install/alpine.yml
Normal file
9
roles/rsync/tasks/install/alpine.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
# rsync
|
||||
|
||||
- name: (alp) installing rsync
|
||||
community.general.apk:
|
||||
name: rsync
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
7
roles/rsync/tasks/install/archlinux.yml
Normal file
7
roles/rsync/tasks/install/archlinux.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
- name: (arch) installing rsync
|
||||
community.general.pacman:
|
||||
name: rsync
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
7
roles/rsync/tasks/install/debian.yml
Normal file
7
roles/rsync/tasks/install/debian.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
- name: (deb) installing rsync
|
||||
ansible.builtin.apt:
|
||||
name: rsync
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
7
roles/rsync/tasks/install/redhat.yml
Normal file
7
roles/rsync/tasks/install/redhat.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
- name: (rHa) installing rsync
|
||||
ansible.builtin.yum:
|
||||
name: rsync
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
7
roles/rsync/tasks/install/void.yml
Normal file
7
roles/rsync/tasks/install/void.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
- name: (void) installing rsync
|
||||
community.general.xbps:
|
||||
name: rsync
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
13
roles/rsync/tasks/main.yml
Normal file
13
roles/rsync/tasks/main.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
# Rsync
|
||||
|
||||
- name: Installation
|
||||
ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml"
|
||||
args:
|
||||
apply:
|
||||
tags:
|
||||
- rsync
|
||||
- rsync-install
|
||||
tags:
|
||||
- rsync
|
||||
- rsync-install
|
Loading…
Add table
Add a link
Reference in a new issue