From 73b279d3eb015e92ed3b7ab1cd90c66ae3aa10f7 Mon Sep 17 00:00:00 2001 From: Frank Villaro-Dixon Date: Sun, 3 Nov 2024 15:31:11 +0100 Subject: [PATCH] install rsync on clients Signed-off-by: Frank Villaro-Dixon --- ansible/configure-server.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ansible/configure-server.yml b/ansible/configure-server.yml index 1c6a82a..2f908fb 100644 --- a/ansible/configure-server.yml +++ b/ansible/configure-server.yml @@ -134,6 +134,12 @@ state: present key: "{{ hostvars[backup_server]['rsnapshot_ssh_key'] | trim }} backup@{{ hostvars[backup_server]['ansible_default_ipv4']['address'] }}" # key_options: command="/usr/bin/rrsync -ro /",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty" + - name: Install rsync + ansible.builtin.package: + name: + - rsync + state: present + # The kDrive backup stuff @@ -177,4 +183,4 @@ name: mnt-kdrive.automount state: started enabled: yes - when: kdrive_automount.changed \ No newline at end of file + when: kdrive_automount.changed