More busybox love again
This commit is contained in:
parent
d71540d609
commit
620484a6d8
|
@ -4,7 +4,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
|
||||||
AUTHOR="(C) 2013-2016 by Orsiris de Jong"
|
AUTHOR="(C) 2013-2016 by Orsiris de Jong"
|
||||||
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
|
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
|
||||||
PROGRAM_VERSION=1.2-beta2
|
PROGRAM_VERSION=1.2-beta2
|
||||||
PROGRAM_BUILD=2016102201
|
PROGRAM_BUILD=2016102202
|
||||||
IS_STABLE=no
|
IS_STABLE=no
|
||||||
|
|
||||||
# Execution order #__WITH_PARANOIA_DEBUG
|
# Execution order #__WITH_PARANOIA_DEBUG
|
||||||
|
@ -772,6 +772,11 @@ function syncAttrs {
|
||||||
local escDestDir
|
local escDestDir
|
||||||
local destReplica
|
local destReplica
|
||||||
|
|
||||||
|
if [ "$LOCAL_OS" == "BUSYBOX" ]; then
|
||||||
|
Logger "Skipping acl synchronization (busybox doesn't have join command)." "NOTICE"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
Logger "Getting list of files that need updates." "NOTICE"
|
Logger "Getting list of files that need updates." "NOTICE"
|
||||||
|
|
||||||
if [ "$REMOTE_OPERATION" == "yes" ]; then
|
if [ "$REMOTE_OPERATION" == "yes" ]; then
|
||||||
|
|
Loading…
Reference in New Issue