From c2c1c856515783bd75222270e62d4870d3e9aef0 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 25 Mar 2021 08:59:16 -0400 Subject: [PATCH] Increase verbosity of syncfiles --- confluent_server/confluent/syncfiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/syncfiles.py b/confluent_server/confluent/syncfiles.py index 99396a3f..360d022b 100644 --- a/confluent_server/confluent/syncfiles.py +++ b/confluent_server/confluent/syncfiles.py @@ -92,7 +92,7 @@ def sync_list_to_node(synclist, node, suffixes): os.path.join(targdir, suffixes['merge'])) sshutil.prep_ssh_key('/etc/confluent/ssh/automation') output = subprocess.check_output( - ['rsync', '-aL', targdir + '/', 'root@{}:/'.format(node)]) + ['rsync', '-avL', targdir + '/', 'root@{}:/'.format(node)]) finally: shutil.rmtree(targdir) return output