Cosmetic fixes

This commit is contained in:
deajan 2016-10-22 20:59:50 +02:00
parent 620484a6d8
commit 101cb26549
2 changed files with 4 additions and 4 deletions

View File

@ -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=2016102202 PROGRAM_BUILD=2016102203
IS_STABLE=no IS_STABLE=no
# Execution order #__WITH_PARANOIA_DEBUG # Execution order #__WITH_PARANOIA_DEBUG
@ -773,7 +773,7 @@ function syncAttrs {
local destReplica local destReplica
if [ "$LOCAL_OS" == "BUSYBOX" ]; then if [ "$LOCAL_OS" == "BUSYBOX" ]; then
Logger "Skipping acl synchronization (busybox doesn't have join command)." "NOTICE" Logger "Skipping acl synchronization. Busybox doesn't have join command." "NOTICE"
return 0 return 0
fi fi

View File

@ -1,6 +1,6 @@
#### MINIMAL-FUNCTION-SET BEGIN #### #### MINIMAL-FUNCTION-SET BEGIN ####
## FUNC_BUILD=2016102202 ## FUNC_BUILD=2016102203
## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr
## To use in a program, define the following variables: ## To use in a program, define the following variables:
@ -946,7 +946,7 @@ function GetLocalOS {
local localOsVar local localOsVar
if type -p busybox; then if type -p busybox > /dev/null; then
localOsVar="BusyBox" localOsVar="BusyBox"
else else
localOsVar="$(uname -spio 2>&1)" localOsVar="$(uname -spio 2>&1)"