personal_infra/ansible/infra/900_install_rsync.yml

11 lines
181 B
YAML
Raw Normal View History

2025-07-02 17:17:56 +02:00
- name: Install rsync
2026-09-11 21:51:50 +02:00
hosts: managed
2025-07-02 17:17:56 +02:00
vars_files:
- ../infra_vars.yml
become: true
tasks:
- name: Install rsync
apt:
name: rsync
state: present