Semplificazione installazione rclone.

This commit is contained in:
Emiliano Vavassori 2024-12-23 22:26:28 +01:00
parent 5d9f1a014e
commit e0b0db2d77
6 changed files with 6 additions and 42 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,13 +1,12 @@
--- ---
# Rclone # Rclone
- name: Installation - name: Installing rclone
ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml" ansible.builtin.package:
args: name: rclone
apply: state: present
tags: update_cache: true
- rclone become: true
- rclone-install
tags: tags:
- rclone - rclone
- rclone-install - rclone-install