personal_infra/ansible/infra/900_install_rsync.yml

11 lines
177 B
YAML
Raw Normal View History

2025-07-02 17:17:56 +02:00
- name: Install rsync
hosts: all
vars_files:
- ../infra_vars.yml
become: true
tasks:
- name: Install rsync
apt:
name: rsync
state: present