Enabled Rsync compression in quicksync mode
This commit is contained in:
parent
7fb8eb7004
commit
f22cff5a49
|
@ -7,7 +7,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
|
|||
AUTHOR="(C) 2013-2019 by Orsiris de Jong"
|
||||
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
|
||||
PROGRAM_VERSION=1.3.0-prerc1
|
||||
PROGRAM_BUILD=2019080901
|
||||
PROGRAM_BUILD=2019081401
|
||||
IS_STABLE=false
|
||||
|
||||
CONFIG_FILE_REVISION_REQUIRED=1.3.0
|
||||
|
@ -3167,6 +3167,10 @@ if [ $_QUICK_SYNC -eq 2 ]; then
|
|||
MAX_EXEC_TIME_PER_CMD_AFTER=0
|
||||
fi
|
||||
|
||||
if [ "$RSYNC_COMPRESS" == "" ]; then
|
||||
RSYNC_COMPRESS=true
|
||||
fi
|
||||
|
||||
if [ "$PATH_SEPARATOR_CHAR" == "" ]; then
|
||||
PATH_SEPARATOR_CHAR=";"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue