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

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,13 @@
---
# Rclone
- name: Installation
ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml"
args:
apply:
tags:
- rclone
- rclone-install
tags:
- rclone
- rclone-install