summaryrefslogtreecommitdiffstats
path: root/roles/rsync/tasks/main.yml
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-09-22 17:47:51 +0200
committerAhmed Abdelhalim <[email protected]>2025-09-22 17:47:51 +0200
commit30fd2a0ecc6ffa7aa9d742e329ca51b3cf116b83 (patch)
treed5977c97b78a8be5a9eced08b12cfc540d20cc7a /roles/rsync/tasks/main.yml
parent11bf978318f74f6f7701e9f5d669bef5b9862107 (diff)
Add simple rsync role used to sync between hosts
Diffstat (limited to 'roles/rsync/tasks/main.yml')
-rw-r--r--roles/rsync/tasks/main.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/rsync/tasks/main.yml b/roles/rsync/tasks/main.yml
new file mode 100644
index 00000000..16ae7a83
--- /dev/null
+++ b/roles/rsync/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure rsync is installed"
+ become: true
+ ansible.builtin.package:
+ name: "rsync"
+ state: "present"