Rimosse specifiche per sistema operativo per rsync.

This commit is contained in:
Emiliano Vavassori 2024-12-23 22:23:39 +01:00
parent 686bda6a21
commit 5d9f1a014e
6 changed files with 5 additions and 43 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -2,12 +2,11 @@
# Rsync # Rsync
- name: Installation - name: Installation
ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml" ansible.builtin.package:
args: name: rsync
apply: state: present
tags: update_cache: true
- rsync become: true
- rsync-install
tags: tags:
- rsync - rsync
- rsync-install - rsync-install