mirror of
https://github.com/deajan/osync
synced 2024-11-15 12:12:56 +00:00
Rebuilt targets
This commit is contained in:
parent
eaeb218508
commit
c2fef97c84
@ -7,7 +7,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
|
||||
AUTHOR="(C) 2013-2020 by Orsiris de Jong"
|
||||
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
|
||||
PROGRAM_VERSION=1.3.0-prerc1
|
||||
PROGRAM_BUILD=2019122406
|
||||
PROGRAM_BUILD=2020012301
|
||||
IS_STABLE=false
|
||||
|
||||
CONFIG_FILE_REVISION_REQUIRED=1.3.0
|
||||
@ -2659,21 +2659,24 @@ function _CheckReplicasLocal {
|
||||
return 1
|
||||
fi
|
||||
|
||||
Logger "Checking minimum disk space in local replica [$replicaPath]." "NOTICE"
|
||||
diskSpace=$($DF_CMD "$replicaPath" | tail -1 | awk '{print $4}')
|
||||
retval=$?
|
||||
if [ $retval -ne 0 ]; then
|
||||
Logger "Cannot get free space." "ERROR" $retval
|
||||
else
|
||||
# Ugly fix for df in some busybox environments that can only show human formats
|
||||
if [ $(IsInteger $diskSpace) -eq 0 ]; then
|
||||
diskSpace=$(HumanToNumeric $diskSpace)
|
||||
fi
|
||||
if [ $MINIMUM_SPACE -ne 0 ]; then
|
||||
Logger "Checking minimum disk space in local replica [$replicaPath]." "NOTICE"
|
||||
diskSpace=$($DF_CMD "$replicaPath" | tail -1 | awk '{print $4}')
|
||||
retval=$?
|
||||
if [ $retval -ne 0 ]; then
|
||||
Logger "Cannot get free space." "ERROR" $retval
|
||||
else
|
||||
# Ugly fix for df in some busybox environments that can only show human formats
|
||||
if [ $(IsInteger $diskSpace) -eq 0 ]; then
|
||||
diskSpace=$(HumanToNumeric $diskSpace)
|
||||
fi
|
||||
|
||||
if [ $diskSpace -lt $MINIMUM_SPACE ]; then
|
||||
Logger "There is not enough free space on local replica [$replicaPath] ($diskSpace KB)." "WARN"
|
||||
if [ $diskSpace -lt $MINIMUM_SPACE ]; then
|
||||
Logger "There is not enough free space on local replica [$replicaPath] ($diskSpace KB)." "WARN"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
return $retval
|
||||
}
|
||||
|
||||
function _CheckReplicasRemote {
|
||||
@ -2922,19 +2925,21 @@ function _CheckReplicasRemoteSub {
|
||||
exit 1
|
||||
fi
|
||||
|
||||
RemoteLogger "Checking minimum disk space in remote replica [$replicaPath]." "NOTICE"
|
||||
diskSpace=$($DF_CMD "$replicaPath" | tail -1 | awk '{print $4}')
|
||||
retval=$?
|
||||
if [ $retval -ne 0 ]; then
|
||||
RemoteLogger "Cannot get free space." "ERROR" $retval
|
||||
else
|
||||
# Ugly fix for df in some busybox environments that can only show human formats
|
||||
if [ $(IsInteger $diskSpace) -eq 0 ]; then
|
||||
diskSpace=$(HumanToNumeric $diskSpace)
|
||||
fi
|
||||
if [ $MINIMUM_SPACE -ne 0 ]; then
|
||||
RemoteLogger "Checking minimum disk space in remote replica [$replicaPath]." "NOTICE"
|
||||
diskSpace=$($DF_CMD "$replicaPath" | tail -1 | awk '{print $4}')
|
||||
retval=$?
|
||||
if [ $retval -ne 0 ]; then
|
||||
RemoteLogger "Cannot get free space." "ERROR" $retval
|
||||
else
|
||||
# Ugly fix for df in some busybox environments that can only show human formats
|
||||
if [ $(IsInteger $diskSpace) -eq 0 ]; then
|
||||
diskSpace=$(HumanToNumeric $diskSpace)
|
||||
fi
|
||||
|
||||
if [ $diskSpace -lt $MINIMUM_SPACE ]; then
|
||||
RemoteLogger "There is not enough free space on remote replica [$replicaPath] ($diskSpace KB)." "WARN"
|
||||
if [ $diskSpace -lt $MINIMUM_SPACE ]; then
|
||||
RemoteLogger "There is not enough free space on remote replica [$replicaPath] ($diskSpace KB)." "WARN"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
return $retval
|
||||
|
55
osync.sh
55
osync.sh
@ -7,7 +7,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
|
||||
AUTHOR="(C) 2013-2020 by Orsiris de Jong"
|
||||
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
|
||||
PROGRAM_VERSION=1.3.0-prerc1
|
||||
PROGRAM_BUILD=2019122406
|
||||
PROGRAM_BUILD=2020012301
|
||||
IS_STABLE=false
|
||||
|
||||
CONFIG_FILE_REVISION_REQUIRED=1.3.0
|
||||
@ -2506,21 +2506,24 @@ function _CheckReplicasLocal {
|
||||
return 1
|
||||
fi
|
||||
|
||||
Logger "Checking minimum disk space in local replica [$replicaPath]." "NOTICE"
|
||||
diskSpace=$($DF_CMD "$replicaPath" | tail -1 | awk '{print $4}')
|
||||
retval=$?
|
||||
if [ $retval -ne 0 ]; then
|
||||
Logger "Cannot get free space." "ERROR" $retval
|
||||
else
|
||||
# Ugly fix for df in some busybox environments that can only show human formats
|
||||
if [ $(IsInteger $diskSpace) -eq 0 ]; then
|
||||
diskSpace=$(HumanToNumeric $diskSpace)
|
||||
fi
|
||||
if [ $MINIMUM_SPACE -ne 0 ]; then
|
||||
Logger "Checking minimum disk space in local replica [$replicaPath]." "NOTICE"
|
||||
diskSpace=$($DF_CMD "$replicaPath" | tail -1 | awk '{print $4}')
|
||||
retval=$?
|
||||
if [ $retval -ne 0 ]; then
|
||||
Logger "Cannot get free space." "ERROR" $retval
|
||||
else
|
||||
# Ugly fix for df in some busybox environments that can only show human formats
|
||||
if [ $(IsInteger $diskSpace) -eq 0 ]; then
|
||||
diskSpace=$(HumanToNumeric $diskSpace)
|
||||
fi
|
||||
|
||||
if [ $diskSpace -lt $MINIMUM_SPACE ]; then
|
||||
Logger "There is not enough free space on local replica [$replicaPath] ($diskSpace KB)." "WARN"
|
||||
if [ $diskSpace -lt $MINIMUM_SPACE ]; then
|
||||
Logger "There is not enough free space on local replica [$replicaPath] ($diskSpace KB)." "WARN"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
return $retval
|
||||
}
|
||||
|
||||
function _CheckReplicasRemote {
|
||||
@ -2759,19 +2762,21 @@ function _CheckReplicasRemoteSub {
|
||||
exit 1
|
||||
fi
|
||||
|
||||
RemoteLogger "Checking minimum disk space in remote replica [$replicaPath]." "NOTICE"
|
||||
diskSpace=$($DF_CMD "$replicaPath" | tail -1 | awk '{print $4}')
|
||||
retval=$?
|
||||
if [ $retval -ne 0 ]; then
|
||||
RemoteLogger "Cannot get free space." "ERROR" $retval
|
||||
else
|
||||
# Ugly fix for df in some busybox environments that can only show human formats
|
||||
if [ $(IsInteger $diskSpace) -eq 0 ]; then
|
||||
diskSpace=$(HumanToNumeric $diskSpace)
|
||||
fi
|
||||
if [ $MINIMUM_SPACE -ne 0 ]; then
|
||||
RemoteLogger "Checking minimum disk space in remote replica [$replicaPath]." "NOTICE"
|
||||
diskSpace=$($DF_CMD "$replicaPath" | tail -1 | awk '{print $4}')
|
||||
retval=$?
|
||||
if [ $retval -ne 0 ]; then
|
||||
RemoteLogger "Cannot get free space." "ERROR" $retval
|
||||
else
|
||||
# Ugly fix for df in some busybox environments that can only show human formats
|
||||
if [ $(IsInteger $diskSpace) -eq 0 ]; then
|
||||
diskSpace=$(HumanToNumeric $diskSpace)
|
||||
fi
|
||||
|
||||
if [ $diskSpace -lt $MINIMUM_SPACE ]; then
|
||||
RemoteLogger "There is not enough free space on remote replica [$replicaPath] ($diskSpace KB)." "WARN"
|
||||
if [ $diskSpace -lt $MINIMUM_SPACE ]; then
|
||||
RemoteLogger "There is not enough free space on remote replica [$replicaPath] ($diskSpace KB)." "WARN"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
return $retval
|
||||
|
Loading…
Reference in New Issue
Block a user