From 636b1a1819a618f671e80a3195d7d99d74fd3214 Mon Sep 17 00:00:00 2001 From: Gocnak Date: Mon, 29 Oct 2018 01:32:17 -0400 Subject: [PATCH] Disregard copying perms to catch another edge case Pesky, was caught up trying to copy permissions over and didn't really need to --- run/rsync_archive/archive-clips.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run/rsync_archive/archive-clips.sh b/run/rsync_archive/archive-clips.sh index 4bd8e4b..a87369f 100644 --- a/run/rsync_archive/archive-clips.sh +++ b/run/rsync_archive/archive-clips.sh @@ -4,7 +4,7 @@ log "Archiving through rsync..." source /root/.teslaCamRsyncConfig -num_files_moved=$(rsync -auzvh --stats --log-file=/tmp/archive-rsync-cmd.log /mnt/cam/TeslaCam/saved* $user@$server:$path | awk '/files transferred/{print $NF}') +num_files_moved=$(rsync -auzvh --no-perms --stats --log-file=/tmp/archive-rsync-cmd.log /mnt/cam/TeslaCam/saved* $user@$server:$path | awk '/files transferred/{print $NF}') /root/bin/send-pushover "$num_files_moved"