diff --git a/src/murfey/client/rsync.py b/src/murfey/client/rsync.py index 80e1c99a6..5be764cbc 100644 --- a/src/murfey/client/rsync.py +++ b/src/murfey/client/rsync.py @@ -422,14 +422,14 @@ def parse_stderr(line: str): # rsync default settings rsync_cmd = [ "rsync", - "-iiv", + "-ivv", # Second -v displays skipped files "--times", "--progress", "--outbuf=line", "--files-from=-", # '-' indicates reading from standard input # Needed as a pair to trigger permission modifications # Ref: https://serverfault.com/a/796341 - "-p", + "--perms", "--chmod=D0750,F0750", # Use extended chmod format ] # Add file locations