2014-05-26 22:50:46 +00:00
#!/usr/bin/env bash
2013-06-18 11:34:14 +00:00
2014-01-19 19:31:14 +00:00
PROGRAM = "Osync" # Rsync based two way sync engine with fault tolerance
2015-01-16 09:55:01 +00:00
AUTHOR = "(L) 2013-2015 by Orsiris \"Ozy\" de Jong"
2014-01-19 19:31:14 +00:00
CONTACT = "http://www.netpower.fr/osync - ozy@netpower.fr"
2015-09-10 15:48:57 +00:00
PROGRAM_VERSION = 1.1-unstable
2015-09-12 17:33:53 +00:00
PROGRAM_BUILD = 2015091204
2014-05-26 22:50:46 +00:00
2014-05-27 10:47:50 +00:00
## type doesn't work on platforms other than linux (bash). If if doesn't work, always assume output is not a zero exitcode
2015-09-08 12:04:48 +00:00
if ! type -p " $BASH " > /dev/null; then
2014-05-26 22:50:46 +00:00
echo "Please run this script only with bash shell. Tested on bash >= 3.2"
exit 127
fi
2014-05-08 10:36:36 +00:00
2015-09-10 15:48:57 +00:00
## allow debugging from command line with DEBUG=yes
2015-09-09 16:59:23 +00:00
if [ ! " $_DEBUG " = = "yes" ] ; then
_DEBUG = no
2015-03-30 17:51:31 +00:00
SLEEP_TIME = .1
2014-07-08 00:00:23 +00:00
else
2015-09-10 15:48:57 +00:00
SLEEP_TIME = 1
fi
## allow function call checks
if [ " $_PARANOIA_DEBUG " = = "yes" ] ; then
_DEBUG = yes
SLEEP_TIME = 1
2014-05-08 10:36:36 +00:00
fi
2013-06-18 11:34:14 +00:00
SCRIPT_PID = $$
LOCAL_USER = $( whoami)
LOCAL_HOST = $( hostname)
2013-07-15 22:10:23 +00:00
## Default log file until config file is loaded
2015-09-08 12:04:48 +00:00
if [ -w /var/log ] ; then
2013-10-10 18:17:40 +00:00
LOG_FILE = /var/log/osync.log
else
LOG_FILE = ./osync.log
fi
2014-01-19 19:31:14 +00:00
## Default directory where to store temporary run files
2015-09-08 12:04:48 +00:00
if [ -w /tmp ] ; then
2013-10-10 18:17:40 +00:00
RUN_DIR = /tmp
2015-09-08 12:04:48 +00:00
elif [ -w /var/tmp ] ; then
2013-10-10 18:17:40 +00:00
RUN_DIR = /var/tmp
else
RUN_DIR = .
fi
2013-07-15 22:10:23 +00:00
2015-09-12 17:02:12 +00:00
## Working directory. This is the name of the osync subdirectory contained in every replica.
2013-07-15 22:10:23 +00:00
OSYNC_DIR = ".osync_workdir"
## Log a state message every $KEEP_LOGGING seconds. Should not be equal to soft or hard execution time so your log won't be unnecessary big.
KEEP_LOGGING = 1801
2013-06-18 11:34:14 +00:00
2013-08-03 21:06:09 +00:00
## Correct output of sort command (language agnostic sorting)
export LC_ALL = C
2014-09-22 19:21:37 +00:00
ALERT_LOG_FILE = $RUN_DIR /osync_lastlog
2015-09-08 12:11:08 +00:00
function Dummy {
2015-03-30 17:51:31 +00:00
sleep .1
2015-03-28 19:06:17 +00:00
}
2015-09-10 19:42:11 +00:00
function _Logger {
2015-09-08 14:08:14 +00:00
local value = " ${ 1 } " # What to log
echo -e " $value " >> " $LOG_FILE "
2015-09-09 16:59:23 +00:00
if [ $_SILENT -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
echo -e " $value "
fi
}
function Logger {
2015-09-10 19:42:11 +00:00
local value = " ${ 1 } " # Sentence to log (in double quotes)
2015-09-08 14:08:14 +00:00
local level = " ${ 2 } " # Log level: DEBUG, NOTICE, WARN, ERROR, CRITIAL
# Special case in daemon mode we should timestamp instead of counting seconds
2015-09-08 12:04:48 +00:00
if [ $sync_on_changes -eq 1 ] ; then
2014-01-19 19:31:14 +00:00
prefix = " $( date) - "
2013-11-18 22:50:39 +00:00
else
2014-01-19 19:31:14 +00:00
prefix = " TIME: $SECONDS - "
2013-11-18 22:50:39 +00:00
fi
2015-09-08 14:08:14 +00:00
if [ " $level " = = "CRITICAL" ] ; then
2015-09-10 19:42:11 +00:00
_Logger " $prefix \e[41m $value \e[0m "
2015-09-08 14:08:14 +00:00
ERROR_ALERT = 1
2015-09-10 19:42:11 +00:00
return
2015-09-08 14:08:14 +00:00
elif [ " $level " = = "ERROR" ] ; then
2015-09-10 19:42:11 +00:00
_Logger " $prefix \e[91m $value \e[0m "
2015-09-08 14:08:14 +00:00
ERROR_ALERT = 1
2015-09-10 19:42:11 +00:00
return
2015-09-08 14:08:14 +00:00
elif [ " $level " = = "WARN" ] ; then
2015-09-10 19:42:11 +00:00
_Logger " $prefix \e[93m $value \e[0m "
return
2015-09-08 14:08:14 +00:00
elif [ " $level " = = "NOTICE" ] ; then
2015-09-10 19:42:11 +00:00
_Logger " $prefix $value "
return
2015-09-08 14:08:14 +00:00
elif [ " $level " = = "DEBUG" ] ; then
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " = = "yes" ] ; then
2015-09-10 19:42:11 +00:00
_Logger " $prefix $value "
return
2015-09-08 14:08:14 +00:00
fi
else
2015-09-10 19:42:11 +00:00
_Logger "\e[41mLogger function called without proper loglevel.\e[0m"
_Logger " $prefix $value "
2013-07-21 19:40:55 +00:00
fi
}
2015-09-08 12:11:08 +00:00
function TrapError {
2015-09-08 17:17:26 +00:00
local job = " $0 "
local line = " $1 "
local code = " ${ 2 :- 1 } "
2015-09-09 16:59:23 +00:00
if [ $_SILENT -eq 0 ] ; then
2015-09-08 17:17:26 +00:00
echo -e " /!\ ERROR in ${ job } : Near line ${ line } , exit code ${ code } "
2015-09-08 12:04:48 +00:00
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function TrapStop {
2015-09-08 12:04:48 +00:00
if [ $soft_stop -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " /!\ WARNING: Manual exit of osync is really not recommended. Sync will be in inconsistent state." "WARN"
Logger " /!\ WARNING: If you are sure, please hit CTRL+C another time to quit." "WARN"
2013-07-16 21:06:26 +00:00
soft_stop = 1
2013-07-17 09:34:05 +00:00
return 1
2013-07-16 21:06:26 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $soft_stop -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " /!\ WARNING: CTRL+C hit twice. Quitting osync. Please wait..." "WARN"
2013-07-22 19:14:57 +00:00
soft_stop = 2
exit 1
2015-09-08 12:04:48 +00:00
fi
2013-07-16 21:06:26 +00:00
}
2015-09-08 12:11:08 +00:00
function TrapQuit {
2015-09-08 12:04:48 +00:00
if [ $error_alert -ne 0 ] ; then
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " != "yes" ] ; then
2015-03-20 19:40:57 +00:00
SendAlert
else
2015-09-08 14:08:14 +00:00
Logger "Debug mode, no alert mail will be sent." "NOTICE"
2015-03-20 19:40:57 +00:00
fi
2015-09-11 13:34:23 +00:00
UnlockReplicas
2013-07-22 19:14:57 +00:00
CleanUp
2015-09-08 14:08:14 +00:00
Logger "Osync finished with errors." "WARN"
2014-01-19 19:31:14 +00:00
exitcode = 1
2013-07-17 09:34:05 +00:00
else
2015-09-11 13:34:23 +00:00
UnlockReplicas
2013-07-22 19:14:57 +00:00
CleanUp
2015-09-08 14:08:14 +00:00
Logger "Osync finished." "NOTICE"
2014-01-19 19:31:14 +00:00
exitcode = 0
2013-07-17 09:34:05 +00:00
fi
2014-01-19 19:31:14 +00:00
if ps -p $child_pid > /dev/null 2>& 1
then
kill -9 $child_pid
fi
if ps -p $sub_pid > /dev/null 2>& 1
then
kill -9 $sub_pid
fi
exit $exitcode
2013-07-17 09:34:05 +00:00
}
2013-07-16 21:06:26 +00:00
2015-09-08 12:11:08 +00:00
function Spinner {
2015-09-09 16:59:23 +00:00
if [ $_SILENT -eq 1 ] ; then
2015-09-09 12:50:21 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
case $toggle
in
1)
2015-09-09 12:50:21 +00:00
echo -n " \ "
2015-09-08 12:04:48 +00:00
echo -ne "\r"
toggle = "2"
; ;
2)
2015-09-09 12:50:21 +00:00
echo -n " | "
2015-09-08 12:04:48 +00:00
echo -ne "\r"
toggle = "3"
; ;
3)
2015-09-09 12:50:21 +00:00
echo -n " / "
2015-09-08 12:04:48 +00:00
echo -ne "\r"
toggle = "4"
; ;
*)
2015-09-09 12:50:21 +00:00
echo -n " - "
2015-09-08 12:04:48 +00:00
echo -ne "\r"
toggle = "1"
; ;
esac
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function EscapeSpaces {
2015-09-12 17:02:12 +00:00
local string = " ${ 1 } " # String on which spaces will be escaped
2015-09-08 17:17:26 +00:00
echo $( echo " $string " | sed 's/ /\\ /g' )
2013-07-19 16:15:25 +00:00
}
2015-09-08 12:11:08 +00:00
function CleanUp {
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " != "yes" ] ; then
2015-09-12 17:02:12 +00:00
rm -f " $RUN_DIR /osync_*_ $SCRIPT_PID "
2013-07-17 09:34:05 +00:00
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function SendAlert {
2015-09-08 12:04:48 +00:00
if [ " $quick_sync " = = "2" ] ; then
2015-09-08 14:08:14 +00:00
Logger "Current task is a quicksync task. Will not send any alert." "NOTICE"
2013-11-03 19:29:17 +00:00
return 0
fi
2014-11-28 11:10:00 +00:00
eval " cat \" $LOG_FILE \" $COMPRESSION_PROGRAM > $ALERT_LOG_FILE "
2015-09-08 12:04:48 +00:00
MAIL_ALERT_MSG = $MAIL_ALERT_MSG $'\n\n' $( tail -n 25 " $LOG_FILE " )
2014-07-08 00:14:03 +00:00
if type -p mutt > /dev/null 2>& 1
2015-09-08 12:04:48 +00:00
then
echo $MAIL_ALERT_MSG | $( type -p mutt) -x -s " Sync alert for $SYNC_ID " $DESTINATION_MAILS -a " $ALERT_LOG_FILE "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " WARNING: Cannot send alert email via $( type -p mutt) !!! " "WARN"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sent alert mail using mutt." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
elif type -p mail > /dev/null 2>& 1
then
echo $MAIL_ALERT_MSG | $( type -p mail) -a " $ALERT_LOG_FILE " -s " Sync alert for $SYNC_ID " $DESTINATION_MAILS
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " WARNING: Cannot send alert email via $( type -p mail) with attachments !!! " "WARN"
2015-09-08 12:04:48 +00:00
echo $MAIL_ALERT_MSG | $( type -p mail) -s " Sync alert for $SYNC_ID " $DESTINATION_MAILS
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " WARNING: Cannot send alert email via $( type -p mail) without attachments !!! " "WARN"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sent alert mail using mail command without attachment." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
else
2015-09-08 14:08:14 +00:00
Logger "Sent alert mail using mail command." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
2013-10-10 18:17:40 +00:00
elif type -p sendemail > /dev/null 2>& 1
then
2015-09-08 12:04:48 +00:00
if [ " $SMTP_USER " != "" ] && [ " $SMTP_PASSWORD " != "" ] ; then
2014-05-27 12:18:48 +00:00
$SMTP_OPTIONS = " -xu $SMTP_USER -xp $SMTP_PASSWORD "
else
$SMTP_OPTIONS = ""
fi
$( type -p sendemail) -f $SENDER_MAIL -t $DESTINATION_MAILS -u " Backup alert for $BACKUP_ID " -m " $MAIL_ALERT_MSG " -s $SMTP_SERVER $SMTP_OPTIONS > /dev/null 2>& 1
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " WARNING: Cannot send alert email via $( type -p sendemail) !!! " "WARN"
2013-10-10 18:17:40 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sent alert mail using sendemail command without attachment." "NOTICE"
2013-10-10 18:17:40 +00:00
fi
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "WARNING: Cannot send alert email (no mutt / mail present) !!!" "WARN"
2015-09-08 12:04:48 +00:00
return 1
fi
2014-03-23 16:52:45 +00:00
2015-09-08 12:04:48 +00:00
if [ -f " $ALERT_LOG_FILE " ] ; then
2014-09-22 19:21:37 +00:00
rm " $ALERT_LOG_FILE "
2014-03-23 16:52:45 +00:00
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function LoadConfigFile {
2015-09-08 17:17:26 +00:00
local config_file = " ${ 1 } "
2015-09-12 17:02:12 +00:00
2015-09-08 17:17:26 +00:00
if [ ! -f " $config_file " ] ; then
Logger " Cannot load configuration file [ $config_file ]. Sync cannot start. " "CRITICAL"
2013-11-03 19:29:17 +00:00
exit 1
2015-09-08 12:04:48 +00:00
elif [ [ " $1 " != *".conf" ] ] ; then
2015-09-08 17:17:26 +00:00
Logger " Wrong configuration file supplied [ $config_file ]. Sync cannot start. " "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
else
2015-09-12 17:02:12 +00:00
egrep '^#|^[^ ]*=[^;&]*' " $config_file " > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID
source " $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID "
2015-09-08 12:04:48 +00:00
fi
2013-07-15 22:10:23 +00:00
}
2013-06-18 11:34:14 +00:00
2015-09-08 12:11:08 +00:00
function CheckEnvironment {
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
if ! type -p ssh > /dev/null 2>& 1
then
2015-09-08 14:08:14 +00:00
Logger "ssh not present. Cannot start sync." "CRITICAL"
2015-09-08 12:04:48 +00:00
return 1
fi
fi
2015-09-12 17:02:12 +00:00
2015-09-08 12:04:48 +00:00
if ! type -p rsync > /dev/null 2>& 1
then
2015-09-08 14:08:14 +00:00
Logger "rsync not present. Sync cannot start." "CRITICAL"
2015-09-08 12:04:48 +00:00
return 1
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function GetLocalOS {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-12 17:02:12 +00:00
local local_os_var = $( uname -spio 2>& 1)
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-12 17:02:12 +00:00
local local_os_var = $( uname -v 2>& 1)
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-12 17:02:12 +00:00
local local_os_var = ( $uname )
2013-11-14 20:20:13 +00:00
fi
2013-11-13 16:11:54 +00:00
fi
2014-01-19 19:31:14 +00:00
2015-09-12 17:02:12 +00:00
case $local_os_var in
2015-09-08 12:04:48 +00:00
*"Linux" *)
LOCAL_OS = "Linux"
; ;
*"BSD" *)
LOCAL_OS = "BSD"
; ;
*"MINGW32" *)
LOCAL_OS = "msys"
; ;
*"Darwin" *)
LOCAL_OS = "MacOSX"
; ;
*)
2015-09-12 17:02:12 +00:00
Logger " Running on >> $local_os_var << not supported. Please report to the author. " "ERROR"
2015-09-08 12:04:48 +00:00
exit 1
; ;
esac
2015-09-12 17:02:12 +00:00
Logger " Local OS: [ $local_os_var ]. " "DEBUG"
2014-05-26 22:50:46 +00:00
}
2014-01-19 19:31:14 +00:00
2015-09-08 12:11:08 +00:00
function GetRemoteOS {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-09-12 17:02:12 +00:00
eval " $SSH_CMD \"uname -spio\" > $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID 2>&1 " &
2013-11-03 19:29:17 +00:00
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForTaskCompletion $child_pid 120 240
retval = $?
if [ $retval != 0 ] ; then
2015-09-12 17:02:12 +00:00
eval " $SSH_CMD \"uname -v\" > $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID 2>&1 " &
2013-11-14 12:33:22 +00:00
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForTaskCompletion $child_pid 120 240
retval = $?
if [ $retval != 0 ] ; then
2015-09-12 17:02:12 +00:00
eval " $SSH_CMD \"uname\" > $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID 2>&1 " &
2013-11-14 12:33:22 +00:00
child_pid = $!
2015-09-08 12:04:48 +00:00
WaitForTaskCompletion $child_pid 120 240
retval = $?
if [ $retval != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot Get remote OS type." "ERROR"
2015-09-08 12:04:48 +00:00
fi
fi
fi
2014-05-25 17:09:30 +00:00
2015-09-12 17:02:12 +00:00
local remote_os_var = $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID )
2014-05-25 17:09:30 +00:00
2015-09-12 17:02:12 +00:00
case $remote_os_var in
2014-01-19 19:31:14 +00:00
*"Linux" *)
2013-11-14 12:33:22 +00:00
REMOTE_OS = "Linux"
; ;
2014-05-26 22:50:46 +00:00
*"BSD" *)
REMOTE_OS = "BSD"
2013-11-14 12:33:22 +00:00
; ;
2014-01-19 19:31:14 +00:00
*"MINGW32" *)
2013-11-14 12:33:22 +00:00
REMOTE_OS = "msys"
; ;
2014-01-19 19:31:14 +00:00
*"Darwin" *)
2013-11-14 12:33:22 +00:00
REMOTE_OS = "MacOSX"
; ;
2014-09-22 19:21:37 +00:00
*"ssh" *| *"SSH" *)
2015-09-08 14:08:14 +00:00
Logger "Cannot connect to remote system." "CRITICAL"
2014-03-23 20:57:57 +00:00
exit 1
; ;
2013-11-14 12:33:22 +00:00
*)
2015-09-08 14:08:14 +00:00
Logger "Running on remote OS failed. Please report to the author if the OS is not supported." "CRITICAL"
2015-09-12 17:02:12 +00:00
Logger " Remote OS said:\n $remote_os_var " "CRITICAL"
2013-11-14 12:33:22 +00:00
exit 1
esac
2013-11-02 20:57:15 +00:00
2015-09-12 17:02:12 +00:00
Logger " Remote OS: [ $remote_os_var ]. " "DEBUG"
2014-01-19 19:31:14 +00:00
fi
2013-10-11 19:35:20 +00:00
}
2015-09-08 12:11:08 +00:00
function WaitForTaskCompletion {
2015-09-08 17:17:26 +00:00
local pid = " ${ 1 } " # pid to wait for
local soft_max_time = " ${ 2 } " # If program with pid $pid takes longer than $soft_max_time seconds, will log a warning, unless $soft_max_time equals 0.
local hard_max_time = " ${ 3 } " # If program with pid $pid takes longer than $hard_max_time seconds, will stop execution, unless $hard_max_time equals 0.
2015-09-09 12:50:21 +00:00
__CheckArguments 3 $# $FUNCNAME " $* "
2015-09-08 17:17:26 +00:00
local soft_alert = 0 # Does a soft alert need to be triggered
local log_ttime = 0 # local time instance for comparaison
local seconds_begin = $SECONDS # Seconds since the beginning of the script
local exec_time = 0 # Seconds since the beginning of this function
2015-09-09 07:38:05 +00:00
while eval " $PROCESS_TEST_CMD " > /dev/null
2015-09-08 12:04:48 +00:00
do
Spinner
2015-09-08 17:17:26 +00:00
exec_time = $(( $SECONDS - $seconds_begin ))
if [ $(( ( $exec_time + 1 ) % $KEEP_LOGGING )) -eq 0 ] ; then
if [ $log_ttime -ne $exec_time ] ; then
log_ttime = $exec_time
2015-09-08 14:08:14 +00:00
Logger "Current task still running." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
fi
2015-09-08 17:17:26 +00:00
if [ $exec_time -gt $soft_max_time ] ; then
if [ $soft_alert -eq 0 ] && [ $soft_max_time -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Max soft execution time exceeded for task." "WARN"
2015-09-08 12:04:48 +00:00
soft_alert = 1
2015-04-20 12:11:09 +00:00
fi
2015-09-08 17:17:26 +00:00
if [ $exec_time -gt $hard_max_time ] && [ $hard_max_time -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Max hard execution time exceeded for task. Stopping task execution." "ERROR"
2015-09-08 17:17:26 +00:00
kill -s SIGTERM $pid
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Task stopped succesfully" "NOTICE"
2013-07-18 11:39:52 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sending SIGTERM to proces failed. Trying the hard way." "ERROR"
2015-09-08 17:17:26 +00:00
kill -9 $pid
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Could not stop task." "ERROR"
2013-07-18 20:41:31 +00:00
fi
2013-07-18 11:39:52 +00:00
fi
2015-09-08 12:04:48 +00:00
return 1
fi
2013-07-20 11:43:11 +00:00
fi
2015-09-08 12:04:48 +00:00
sleep $SLEEP_TIME
done
2015-09-08 17:17:26 +00:00
wait $pid
2013-07-21 19:40:55 +00:00
return $?
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function WaitForCompletion {
2015-09-08 17:17:26 +00:00
local pid = " ${ 1 } " # pid to wait for
local soft_max_time = " ${ 2 } " # If program with pid $pid takes longer than $soft_max_time seconds, will log a warning, unless $soft_max_time equals 0.
local hard_max_time = " ${ 3 } " # If program with pid $pid takes longer than $hard_max_time seconds, will stop execution, unless $hard_max_time equals 0.
2015-09-09 12:50:21 +00:00
__CheckArguments 3 $# $FUNCNAME " $* "
2015-09-08 17:17:26 +00:00
local soft_alert = 0 # Does a soft alert need to be triggered
local log_ttime = 0 # local time instance for comparaison
local seconds_begin = $SECONDS # Seconds since the beginning of the script
local exec_time = 0 # Seconds since the beginning of this function
2015-09-09 07:38:05 +00:00
while eval " $PROCESS_TEST_CMD " > /dev/null
2015-09-08 12:04:48 +00:00
do
Spinner
if [ $(( ( $SECONDS + 1 ) % $KEEP_LOGGING )) -eq 0 ] ; then
2015-09-08 17:17:26 +00:00
if [ $log_time -ne $SECONDS ] ; then
log_time = $SECONDS
2015-09-08 14:08:14 +00:00
Logger "Current task still running." "NOTICE"
2015-09-08 12:04:48 +00:00
fi
fi
2015-09-08 17:17:26 +00:00
if [ $SECONDS -gt $soft_max_time ] ; then
if [ $soft_alert -eq 0 ] && [ $soft_max_time != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Max soft execution time exceeded for script." "WARN"
2015-09-08 12:04:48 +00:00
soft_alert = 1
2015-04-20 12:11:09 +00:00
fi
2015-09-08 17:17:26 +00:00
if [ $SECONDS -gt $hard_max_time ] && [ $hard_max_time != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Max hard execution time exceeded for script. Stopping current task execution." "ERROR"
2015-09-08 17:17:26 +00:00
kill -s SIGTERM $pid
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Task stopped succesfully" "NOTICE"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Sending SIGTERM to proces failed. Trying the hard way." "ERROR"
2015-09-08 17:17:26 +00:00
kill -9 $pid
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Could not stop task." "ERROR"
2015-09-08 12:04:48 +00:00
fi
fi
return 1
fi
fi
sleep $SLEEP_TIME
2013-07-18 11:39:52 +00:00
done
2015-09-08 17:17:26 +00:00
wait $pid
2013-07-21 19:40:55 +00:00
return $?
2013-07-18 11:39:52 +00:00
}
2015-09-08 12:11:08 +00:00
function RunLocalCommand {
2015-09-08 17:17:26 +00:00
local command = " ${ 1 } " # Command to run
local hard_max_time = " ${ 2 } " # Max time to wait for command to compleet
2015-09-09 12:50:21 +00:00
__CheckArguments 2 $# $FUNCNAME " $* "
2015-09-08 17:17:26 +00:00
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 0 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Dryrun: Local command [ $command ] not run. " "NOTICE"
2015-09-08 12:04:48 +00:00
return 1
fi
2015-09-08 17:17:26 +00:00
Logger " Running command [ $command ] on local host. " "NOTICE"
eval " $command " > $RUN_DIR /osync_run_local_$SCRIPT_PID 2>& 1 &
2015-09-08 12:04:48 +00:00
child_pid = $!
2015-09-08 17:17:26 +00:00
WaitForTaskCompletion $child_pid 0 $hard_max_time
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Command succeded." "NOTICE"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Command failed." "ERROR"
2015-09-08 12:04:48 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] || [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_run_local_$SCRIPT_PID ) " "NOTICE"
2013-07-20 11:43:11 +00:00
fi
2014-05-25 17:09:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $STOP_ON_CMD_ERROR " = = "yes" ] && [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Stopping on command execution error." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
2013-06-18 11:34:14 +00:00
}
## Runs remote command $1 and waits for completition in $2 seconds
2015-09-08 12:11:08 +00:00
function RunRemoteCommand {
2015-09-08 17:17:26 +00:00
local command = " ${ 1 } " # Command to run
local hard_max_time = " ${ 2 } " # Max time to wait for command to compleet
2015-09-09 12:50:21 +00:00
__CheckArguments 2 $# $FUNCNAME " $* "
2015-09-08 17:17:26 +00:00
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 0 ] ; then
2015-09-08 17:17:26 +00:00
Logger " Dryrun: Local command [ $command ] not run. " "NOTICE"
2015-09-08 12:04:48 +00:00
return 1
fi
2015-09-08 17:17:26 +00:00
Logger " Running command [ $command ] on remote host. " "NOTICE"
eval " $SSH_CMD \" $command \" > $RUN_DIR /osync_run_remote_ $SCRIPT_PID 2>&1 & "
2015-09-08 12:04:48 +00:00
child_pid = $!
2015-09-08 17:17:26 +00:00
WaitForTaskCompletion $child_pid 0 $hard_max_time
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Command succeded." "NOTICE"
2015-09-08 12:04:48 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Command failed." "ERROR"
2015-09-08 12:04:48 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ -f $RUN_DIR /osync_run_remote_$SCRIPT_PID ] && ( [ $_VERBOSE -eq 1 ] || [ $retval -ne 0 ] )
2015-09-08 12:04:48 +00:00
then
2015-09-08 14:08:14 +00:00
Logger " Command output:\n $( cat $RUN_DIR /osync_run_remote_$SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
if [ " $STOP_ON_CMD_ERROR " = = "yes" ] && [ $retval -ne 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Stopping on command execution error." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function RunBeforeHook {
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_RUN_BEFORE_CMD " != "" ] ; then
RunLocalCommand " $LOCAL_RUN_BEFORE_CMD " $MAX_EXEC_TIME_PER_CMD_BEFORE
fi
if [ " $REMOTE_RUN_BEFORE_CMD " != "" ] ; then
RunRemoteCommand " $REMOTE_RUN_BEFORE_CMD " $MAX_EXEC_TIME_PER_CMD_BEFORE
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function RunAfterHook {
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_RUN_AFTER_CMD " != "" ] ; then
RunLocalCommand " $LOCAL_RUN_AFTER_CMD " $MAX_EXEC_TIME_PER_CMD_AFTER
fi
if [ " $REMOTE_RUN_AFTER_CMD " != "" ] ; then
RunRemoteCommand " $REMOTE_RUN_AFTER_CMD " $MAX_EXEC_TIME_PER_CMD_AFTER
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function CheckConnectivityRemoteHost {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_HOST_PING " != "no" ] && [ " $REMOTE_SYNC " != "no" ] ; then
2014-11-24 09:12:48 +00:00
eval " $PING_CMD $REMOTE_HOST > /dev/null 2>&1 "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot ping $REMOTE_HOST " "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
2013-08-24 17:51:39 +00:00
fi
fi
2013-07-15 22:10:23 +00:00
}
2015-09-08 12:11:08 +00:00
function CheckConnectivity3rdPartyHosts {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_3RD_PARTY_HOSTS " != "" ] ; then
remote_3rd_party_success = 0
OLD_IFS = $IFS
IFS = $' \t\n'
for i in $REMOTE_3RD_PARTY_HOSTS
do
2014-11-24 09:12:48 +00:00
eval " $PING_CMD $i > /dev/null 2>&1 "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot ping 3rd party host $i " "WARN"
2015-09-08 12:04:48 +00:00
else
remote_3rd_party_success = 1
fi
done
IFS = $OLD_IFS
if [ $remote_3rd_party_success -ne 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger "No remote 3rd party host responded to ping. No internet ?" "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
fi
2013-07-15 22:10:23 +00:00
}
2015-09-09 12:50:21 +00:00
function __CheckArguments {
# Checks the number of arguments and raises an error if some are missing
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " = = "yes" ] ; then
2015-09-09 12:50:21 +00:00
local number_of_arguments = " ${ 1 } " # Number of arguments a function should have
local number_of_given_arguments = " ${ 2 } " # Number of arguments that have been passed
local function_name = " ${ 3 } " # Function name that called __CheckArguments
local arguments = " ${ 4 } " # All other arguments
2015-09-09 16:59:23 +00:00
if [ " $_PARANOIA_DEBUG " = = "yes" ] ; then
2015-09-12 17:33:53 +00:00
Logger " Entering function [ $function_name ]. " "DEBUG"
# Paranoia check... Can help finding empty arguments. __CheckArguments should be grepped out in production builds.
2015-09-09 12:50:21 +00:00
local count = -3 # Number of arguments minus the function calls for __CheckArguments
for i in $@ ; do
count = $(( count + 1 ))
done
if [ $count -ne $1 ] ; then
Logger " Function $function_name may have inconsistent number of arguments. Expected: $number_of_arguments , count: $count , see log file. " "WARN"
echo " Argument list (including checks): $@ " >> " $LOG_FILE "
fi
fi
2015-09-12 17:33:53 +00:00
if [ $number_of_arguments -ne $number_of_given_arguments ] ; then
Logger " Inconsistnent number of arguments in $function_name . Should have $number_of_arguments arguments, has $number_of_given_arguments arguments, see log file. " "CRITICAL"
# Cannot user Logger here because $@ is a list of arguments
echo " Argumnt list: $4 " >> " $LOG_FILE "
fi
2015-09-09 12:50:21 +00:00
fi
}
2015-09-12 17:02:12 +00:00
###### realpath.sh implementation from https://github.com/mkropat/sh-realpath
2015-05-18 08:53:11 +00:00
realpath( ) {
canonicalize_path " $( resolve_symlinks " $1 " ) "
}
resolve_symlinks( ) {
_resolve_symlinks " $1 "
}
_resolve_symlinks( ) {
_assert_no_path_cycles " $@ " || return
local dir_context path
path = $( readlink -- " $1 " )
if [ $? -eq 0 ] ; then
2015-09-10 15:48:57 +00:00
dir_context = $( dirname -- " $1 " )
_resolve_symlinks " $( _prepend_dir_context_if_necessary " $dir_context " " $path " ) " " $@ "
2015-05-18 08:53:11 +00:00
else
2015-09-10 15:48:57 +00:00
printf '%s\n' " $1 "
2015-05-18 08:53:11 +00:00
fi
}
_prepend_dir_context_if_necessary( ) {
if [ " $1 " = . ] ; then
2015-09-10 15:48:57 +00:00
printf '%s\n' " $2 "
2015-05-18 08:53:11 +00:00
else
2015-09-10 15:48:57 +00:00
_prepend_path_if_relative " $1 " " $2 "
2015-05-18 08:53:11 +00:00
fi
}
_prepend_path_if_relative( ) {
case " $2 " in
2015-09-10 15:48:57 +00:00
/* ) printf '%s\n' " $2 " ; ;
* ) printf '%s\n' " $1 / $2 " ; ;
2015-05-18 08:53:11 +00:00
esac
}
_assert_no_path_cycles( ) {
local target path
target = $1
shift
for path in " $@ " ; do
2015-09-10 15:48:57 +00:00
if [ " $path " = " $target " ] ; then
return 1
fi
2015-05-18 08:53:11 +00:00
done
}
canonicalize_path( ) {
if [ -d " $1 " ] ; then
2015-09-10 15:48:57 +00:00
_canonicalize_dir_path " $1 "
2015-05-18 08:53:11 +00:00
else
2015-09-10 15:48:57 +00:00
_canonicalize_file_path " $1 "
2015-05-18 08:53:11 +00:00
fi
}
_canonicalize_dir_path( ) {
( cd " $1 " 2>/dev/null && pwd -P)
}
_canonicalize_file_path( ) {
local dir file
dir = $( dirname -- " $1 " )
file = $( basename -- " $1 " )
( cd " $dir " 2>/dev/null && printf '%s/%s\n' " $( pwd -P) " " $file " )
}
2015-07-31 13:21:34 +00:00
# Optionally, you may also want to include:
### readlink emulation ###
readlink( ) {
2015-09-08 17:17:26 +00:00
if _has_command readlink; then
2015-09-10 15:48:57 +00:00
_system_readlink " $@ "
2015-07-31 13:21:34 +00:00
else
2015-09-10 15:48:57 +00:00
_emulated_readlink " $@ "
2015-07-31 13:21:34 +00:00
fi
}
_has_command( ) {
hash -- " $1 " 2>/dev/null
}
_system_readlink( ) {
command readlink " $@ "
}
_emulated_readlink( ) {
if [ " $1 " = -- ] ; then
2015-09-10 15:48:57 +00:00
shift
2015-07-31 13:21:34 +00:00
fi
_gnu_stat_readlink " $@ " || _bsd_stat_readlink " $@ "
}
_gnu_stat_readlink( ) {
local output
output = $( stat -c %N -- " $1 " 2>/dev/null) &&
printf '%s\n' " $output " |
2015-09-10 15:48:57 +00:00
sed " s/^‘ [^’ ]*’ -> ‘ \(.*\)’ /\1/
s/^'[^' ] *' -> ' \( .*\) ' /\1 /"
2015-07-31 13:21:34 +00:00
# FIXME: handle newlines
}
_bsd_stat_readlink( ) {
stat -f %Y -- " $1 " 2>/dev/null
}
2015-09-12 17:02:12 +00:00
###### Osync specific functions (non shared)
2015-05-18 08:53:11 +00:00
2015-09-10 15:48:57 +00:00
function _CreateStateDirsLocal {
local replica_state_dir = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
if ! [ -d " $replica_state_dir " ] ; then
$COMMAND_SUDO mkdir -p " $replica_state_dir " > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID 2>& 1
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-10 15:48:57 +00:00
Logger " Cannot create state dir [ $replica_state_dir ]. " "CRITICAL"
Logger " Command output:\n $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID " "ERROR"
exit 1
fi
fi
}
function _CreateStateDirsRemote {
local replica_state_dir = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
$cmd = " $SSH_CMD \"if ! [ -d \\\" $replica_state_dir \\\" ]; then $COMMAND_SUDO mkdir -p \\\" $replica_state_dir \\\"; fi 2>&1\" & "
eval $cmd > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID 2>& 1
WaitForTaskCompletion $! 0 1800
if [ $? != 0 ] ; then
Logger " Cannot create remote state dir [ $replica_state_dir ]. " "CRITICAL"
Logger " Command output:\n $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID " "ERROR"
exit 1
fi
}
function CreateStateDirs {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-10 15:48:57 +00:00
_CreateStateDirsLocal " $INITIATOR_STATE_DIR "
if [ " $REMOTE_SYNC " = = "no" ] ; then
_CreateStateDirsLocal " $TARGET_STATE_DIR "
else
_CreateStateDirsRemote " $TARGET_STATE_DIR "
fi
}
function _CheckReplicaPathsLocal {
local replica_path = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
if [ ! -d " $replica_path " ] ; then
if [ " $CREATE_DIRS " = = "yes" ] ; then
$COMMAND_SUDO mkdir -p " $replica_path " > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID 2>& 1
if [ $? != 0 ] ; then
Logger " Cannot create local replica path [ $replica_path ]. " "CRITICAL"
Logger " Command output:\n $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ) "
exit 1
else
Logger " Created local replica path [ $replica_path ]. " "NOTICE"
fi
else
Logger " Local replica path [ $replica_path ] does not exist. " "CRITICAL"
exit 1
fi
fi
if [ ! -w " $replica_path " ] ; then
Logger " Local replica path [ $replica_path ] is not writable. " "CRITICAL"
exit 1
fi
}
function _CheckReplicaPathsRemote {
local replica_path = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
cmd = " $SSH_CMD \"if ! [ -d \\\" $replica_path \\\" ]; then if [ " $CREATE_DIRS " == " yes" ]; then $COMMAND_SUDO mkdir -p \\\" $replica_path \\\"; fi; fi 2>&1\" & "
2015-09-12 17:02:12 +00:00
eval $cmd > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID 2>& 1
WaitForTaskCompletion $! 0 1800
if [ $? != 0 ] ; then
Logger " Cannot create remote replica path [ $replica_path ]. " "CRITICAL"
Logger " Command output:\n $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID " "ERROR"
exit 1
fi
2015-09-10 15:48:57 +00:00
cmd = " $SSH_CMD \"if [ ! -w " $replica_path " ];then exit 1; fi 2>&1\" &"
eval $cmd
2015-09-12 17:02:12 +00:00
WaitForTaskCompletion $! 0 1800
if [ $? != 0 ] ; then
Logger " Remote replica path [ $replica_path ] is not writable. " "CRITICAL"
exit 1
fi
2015-09-10 15:48:57 +00:00
}
function CheckReplicaPaths {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-10 15:48:57 +00:00
#INITIATOR_SYNC_DIR_CANN=$(realpath "$INITIATOR_SYNC_DIR") #TODO: investigate realpath & readlink issues on MSYS and busybox here
#TARGET_SYNC_DIR_CANN=$(realpath "$TARGET_SYNC_DIR")
2015-03-29 15:30:09 +00:00
2015-09-08 17:17:26 +00:00
#if [ "$REMOTE_SYNC" != "yes" ]; then
2015-09-10 15:48:57 +00:00
# if [ "$INITIATOR_SYNC_DIR_CANN" == "$TARGET_SYNC_DIR_CANN" ]; then
# Logger "Master directory [$INITIATOR_SYNC_DIR] can't be the same as target directory." "CRITICAL"
2015-09-08 17:17:26 +00:00
# exit 1
# fi
#fi
2015-03-29 15:30:09 +00:00
2015-09-10 15:48:57 +00:00
_CheckReplicaPathsLocal " $INITIATOR_STATE_DIR "
if [ " $REMOTE_SYNC " = = "no" ] ; then
_CheckReplicaPathsLocal " $TARGET_STATE_DIR "
else
_CheckReplicaPathsRemote " $TARGET_STATE_DIR "
fi
}
2015-09-10 19:42:11 +00:00
function _CheckDiskSpaceLocal {
local replica_path = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
2013-07-22 19:14:57 +00:00
2015-09-10 19:42:11 +00:00
Logger " Checking minimum disk space in [ $replica_path ]. " "NOTICE"
local initiator_space = $( df -P " $replica_path " | tail -1 | awk '{print $4}' )
if [ $initiator_space -lt $MINIMUM_SPACE ] ; then
Logger " There is not enough free space on initiator [ $initiator_space KB]. " "WARN"
fi
}
function _CheckDiskSpaceRemote {
local replica_path = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
Logger " Checking minimum disk space on target [ $replica_path ]. " "NOTICE"
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
cmd = " $SSH_CMD \" $COMMAND_SUDO df -P \\\" $replca_path \\\"\" > $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID 2>&1 & "
eval $cmd
WaitForTaskCompletion $! 0 1800
if [ $? != 0 ] ; then
Logger " Cannot get free space on target [ $replica_path ]. " "ERROR"
Logger " Command output:\n $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ) "
2015-09-12 17:02:12 +00:00
else
2015-09-10 19:42:11 +00:00
local target_space = $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID | tail -1 | awk '{print $4}' )
if [ $target_space -lt $MINIMUM_SPACE ] ; then
2015-09-12 17:02:12 +00:00
Logger " There is not enough free space on target [ $replica_path ]. " "WARN"
2015-09-10 19:42:11 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
2015-09-10 19:42:11 +00:00
}
function CheckDiskSpace {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-12 17:02:12 +00:00
_CheckDiskSpaceLocal " $INITIATOR_SYNC_DIR "
if [ " $REMOTE_SYNC " = = "no" ] ; then
_CheckDiskSpaceLocal " $TARGET_SYNC_DIR "
else
_CheckDiskSpaceRemote " $TARGET_SYNC_DIR "
fi
2015-09-10 19:42:11 +00:00
}
2015-09-08 12:11:08 +00:00
function RsyncExcludePattern {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-02-18 14:03:45 +00:00
# Disable globbing so wildcards from exclusions don't get expanded
2015-02-12 09:34:42 +00:00
set -f
2015-03-20 19:40:57 +00:00
rest = " $RSYNC_EXCLUDE_PATTERN "
2015-09-08 12:04:48 +00:00
while [ -n " $rest " ]
do
2015-03-20 19:40:57 +00:00
# Take the string until first occurence until $PATH_SEPARATOR_CHAR
2015-09-08 12:04:48 +00:00
str = ${ rest %%;* }
2015-03-20 19:40:57 +00:00
# Handle the last case
2015-09-08 12:04:48 +00:00
if [ " $rest " = " ${ rest / $PATH_SEPARATOR_CHAR / } " ] ; then
2015-03-20 19:40:57 +00:00
rest =
else
# Cut everything before the first occurence of $PATH_SEPARATOR_CHAR
rest = ${ rest #* $PATH_SEPARATOR_CHAR }
fi
2015-09-08 12:04:48 +00:00
if [ " $RSYNC_EXCLUDE " = = "" ] ; then
RSYNC_EXCLUDE = " --exclude=\" $str \" "
else
RSYNC_EXCLUDE = " $RSYNC_EXCLUDE --exclude=\" $str \" "
fi
done
2015-02-12 09:34:42 +00:00
set +f
2013-07-19 16:15:25 +00:00
}
2015-09-08 12:11:08 +00:00
function RsyncExcludeFrom {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-08 12:04:48 +00:00
if [ ! " $RSYNC_EXCLUDE_FROM " = = "" ] ; then
## Check if the exclude list has a full path, and if not, add the config file path if there is one
if [ " $( basename $RSYNC_EXCLUDE_FROM ) " = = " $RSYNC_EXCLUDE_FROM " ] ; then
RSYNC_EXCLUDE_FROM = $( dirname $ConfigFile ) /$RSYNC_EXCLUDE_FROM
fi
if [ -e " $RSYNC_EXCLUDE_FROM " ] ; then
RSYNC_EXCLUDE = " $RSYNC_EXCLUDE --exclude-from=\" $RSYNC_EXCLUDE_FROM \" "
fi
fi
2014-05-08 10:36:36 +00:00
}
2015-09-10 19:42:11 +00:00
function _WriteLockFilesLocal {
local lockfile = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
2015-09-11 13:34:23 +00:00
$COMMAND_SUDO echo " $SCRIPT_PID @ $SYNC_ID " > " $lockfile " #TODO: Determine best format for lockfile for v2
2015-09-10 19:42:11 +00:00
if [ $? != 0 ] ; then
Logger " Could not create lock file [ $lockfile ]. " "CRITICAL"
exit 1
else
2015-09-11 17:39:57 +00:00
Logger " Locked replica on [ $lockfile ]. " "DEBUG"
2015-09-10 19:42:11 +00:00
fi
}
function _WriteLockFilesRemote {
local lockfile = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHosts
cmd = " $SSH_CMD \"echo $SCRIPT_PID @ $SYNC_ID | $COMMAND_SUDO tee \\\" $lock_file \\\" > /dev/null \" " &
eval $cmd
WaitForTaskCompletion $? 0 1800
if [ $? != 0 ] ; then
Logger "Could not set lock on remote target replica." "CRITICAL"
exit 1
else
2015-09-11 17:39:57 +00:00
Logger "Locked remote target replica." "DEBUG"
2015-09-10 19:42:11 +00:00
fi
}
2015-09-08 12:11:08 +00:00
function WriteLockFiles {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-10 19:42:11 +00:00
_WriteLockFilesLocal " $INITIATOR_LOCKFILE "
if [ " $REMOTE_SYNC " != "yes" ] ; then
_WriteLockFilesLocal " $TARGET_LOCKFILE "
else
_WriteLockFilesRemote " $TARGET_LOCKFILE "
fi
}
function _CheckLocksLocal {
local lockfile = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
2015-09-11 13:34:23 +00:00
if [ -f " $lockfile " ] ; then
local lockfile_content = $( cat $lockfile )
2015-09-12 17:02:12 +00:00
Logger " Master lock pid present: $lockfile_content " "DEBUG"
2015-09-11 13:34:23 +00:00
local lock_pid = ${ lockfile_content %@* }
local lock_sync_id = ${ lockfile_content #*@ }
2015-09-12 17:02:12 +00:00
ps -p$lock_pid > /dev/null 2>& 1
if [ $? != 0 ] ; then
Logger " There is a dead osync lock in [ $lockfile ]. Instance [ $lock_pid ] no longer running. Resuming. " "NOTICE"
else
Logger " There is already a local instance of osync running [ $lock_pid ]. Cannot start. " "CRITICAL"
exit 1
fi
fi
2015-09-10 19:42:11 +00:00
}
2015-09-11 17:39:57 +00:00
function _CheckLocksRemote { #TODO: Rewrite this a bit more beautiful
2015-09-10 19:42:11 +00:00
local lockfile = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHosts
2015-09-11 13:34:23 +00:00
cmd = " $SSH_CMD \"if [ -f \\\" $lockfile \\\" ]; then cat \\\" $lockfile \\\"; fi\" > $RUN_DIR /osync_ $FUNCNAME_ $SCRIPT_PID " &
eval $cmd
WaitForTaskCompletion $? 0 1800
if [ $? != 0 ] ; then
if [ -f $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ] ; then
local lockfile_content = $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID )
2015-09-12 17:02:12 +00:00
else
2015-09-11 13:34:23 +00:00
Logger "No remote lockfile found." "NOTICE"
fi
else
Logger "Cannot get remote lockfile." "CRITICAL"
exit 1
fi
local lock_pid = ${ lockfile_content %@* }
local lock_sync_id = ${ lockfile_content #*@ }
if [ " $lock_pid " != "" ] && [ " $lock_sync_id " != "" ] ; then
2015-09-12 17:02:12 +00:00
Logger " Remote lock is: $lock_pid @ $lock_sync_id " "DEBUG"
ps -p$lock_pid > /dev/null 2>& 1
if [ $? != 0 ] ; then
if [ " $lock_sync_id " = = " $SYNC_ID " ] ; then
Logger " There is a dead osync lock on target replica that corresponds to this initiator sync id [ $lock_sync_id ]. Instance [ $lock_pid ] no longer running. Resuming. " "NOTICE"
else
if [ " $FORCE_STRANGER_LOCK_RESUME " = = "yes" ] ; then
Logger " WARNING: There is a dead osync lock on target replica that does not correspond to this initiator sync-id [ $lock_sync_id ]. Forcing resume. " "WARN"
else
Logger " There is a dead osync lock on target replica that does not correspond to this initiator sync-id [ $lock_sync_id ]. Will not resume. " "CRITICAL"
exit 1
fi
fi
else
Logger " There is already a local instance of osync that locks target replica [ $lock_pid @ $lock_sync_id ]. Cannot start. " "CRITICAL"
exit 1
fi
fi
2015-09-10 19:42:11 +00:00
}
function CheckLocks {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-10 19:42:11 +00:00
if [ $_NOLOCKS -eq 1 ] ; then
return 0
fi
# Don't bother checking for locks when FORCE_UNLOCK is set
if [ $FORCE_UNLOCK -eq 1 ] ; then
WriteLockFiles
if [ $? != 0 ] ; then
exit 1
fi
fi
_CheckLocksLocal " $INITIATOR_LOCKFILE "
if [ " $REMOTE_SYNC " != "yes" ] ; then
_CheckLocksLocal " $TARGET_LOCKFILE "
else
_CheckLocksRemote " $TARGET_LOCKFILE "
fi
2015-09-11 13:34:23 +00:00
WriteLockFiles
2015-09-10 19:42:11 +00:00
}
2015-09-11 13:34:23 +00:00
function _UnlockReplicasLocal {
local lockfile = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
if [ -f " $lockfile " ] ; then
2015-09-12 17:02:12 +00:00
$COMMAND_SUDO rm " $lockfile "
if [ $? != 0 ] ; then
Logger "Could not unlock local replica." "ERROR"
else
Logger "Removed local replica lock." "DEBUG"
fi
fi
2015-09-11 13:34:23 +00:00
}
function _UnlockReplicasRemote {
local lockfile = " ${ 1 } "
__CheckArguments 1 $# $FUNCNAME " $* "
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
cmd = " $SSH_CMD \"if [ -f \\\" $localfile \\\" ]; then $COMMAND_SUDO rm \\\" $lockfile \\\"; fi 2>&1\" " > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID &
eval $cmd
2015-09-12 17:02:12 +00:00
WaitForTaskCompletion $? 0 1800
if [ $? != 0 ] ; then
Logger "Could not unlock remote replica." "ERROR"
Logger " Command Output:\n $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ) " "NOTICE"
else
Logger "Removed remote replica lock." "DEBUG"
fi
2015-09-11 13:34:23 +00:00
}
function UnlockReplicas {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-11 13:34:23 +00:00
if [ $_NOLOCKS -eq 1 ] ; then
return 0
fi
_UnlockReplicasLocal " $INITIATOR_LOCKFILE "
if [ " $REMOTE_SYNC " != "yes" ] ; then
_UnlockReplicasLocal " $TARGET_LOCKFILE "
else
_UnlockReplicasRemote " $TARGET_LOCKFILE "
fi
}
2013-07-18 20:41:31 +00:00
###### Sync core functions
2013-07-16 11:55:15 +00:00
2014-01-19 19:31:14 +00:00
## Rsync does not like spaces in directory names, considering it as two different directories. Handling this schema by escaping space.
## It seems this only happens when trying to execute an rsync command through eval $rsync_cmd on a remote host.
2015-09-10 15:48:57 +00:00
## So i'm using unescaped $INITIATOR_SYNC_DIR for local rsync calls and escaped $ESC_INITIATOR_SYNC_DIR for remote rsync calls like user@host:$ESC_INITIATOR_SYNC_DIR
## The same applies for target sync dir..............................................T.H.I.S..I.S..A..P.R.O.G.R.A.M.M.I.N.G..N.I.G.H.T.M.A.R.E
2014-01-19 19:31:14 +00:00
2015-09-08 12:11:08 +00:00
function tree_list {
2015-09-08 17:17:26 +00:00
local replica_path = " ${ 1 } " # path to the replica for which a tree needs to be constructed
2015-09-10 15:48:57 +00:00
local replica_type = " ${ 2 } " # replica type: initiator, target
2015-09-08 17:17:26 +00:00
local tree_filename = " ${ 3 } " # filename to output tree (will be prefixed with $replica_type)
2015-09-12 17:02:12 +00:00
__CheckArguments 3 $# $FUNCNAME " $* "
2015-09-08 17:17:26 +00:00
local escaped_replica_path = $( EscapeSpaces " $replica_path " ) #TODO: See if escpaed still needed when using ' instead of " for command eval
Logger " Creating $replica_type replica file list [ $replica_path ]. " "NOTICE"
2015-09-10 15:48:57 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] && [ " $replica_type " = = "target" ] ; then
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-09-08 17:17:26 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS -8 --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE -e \" $RSYNC_SSH_CMD \" --list-only $REMOTE_USER @ $REMOTE_HOST :\" $escaped_replica_path /\" | grep \"^-\|^d\" | awk '{\$1=\$2=\$3=\$4=\"\" ;print}' | awk '{\$1=\$1 ;print}' | (grep -v \"^\. $\" || :) | sort > \" $RUN_DIR /osync_ $replica_type_ $SCRIPT_PID \" & "
2013-11-04 21:11:43 +00:00
else
2015-09-08 17:17:26 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS -8 --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE --list-only \" $replica_path /\" | grep \"^-\|^d\" | awk '{\$1=\$2=\$3=\$4=\"\" ;print}' | awk '{\$1=\$1 ;print}' | (grep -v \"^\. $\" || :) | sort > \" $RUN_DIR /osync_ $replica_type_ $SCRIPT_PID \" & "
2013-11-04 21:11:43 +00:00
fi
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2014-01-19 19:31:14 +00:00
## Redirect commands stderr here to get rsync stderr output in logfile
eval $rsync_cmd 2>> " $LOG_FILE "
2013-11-04 21:11:43 +00:00
child_pid = $!
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
2014-01-19 19:31:14 +00:00
## Retval 24 = some files vanished while creating list
2015-09-09 09:23:47 +00:00
if ( [ $retval = = 0 ] || [ $retval = = 24 ] ) && [ -f $RUN_DIR /osync_$replica_type_ $SCRIPT_PID ] ; then
2015-09-12 17:02:12 +00:00
mv -f $RUN_DIR /osync_$replica_type_ $SCRIPT_PID " $INITIATOR_STATE_DIR / $replica_type $tree_filename "
2014-05-26 22:50:46 +00:00
return $?
2013-11-04 21:11:43 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Cannot create replica file list." "CRITICAL"
2014-05-26 22:50:46 +00:00
exit $retval
2013-07-16 21:06:26 +00:00
fi
2013-07-18 20:41:31 +00:00
}
2013-07-15 22:10:23 +00:00
2015-09-10 15:48:57 +00:00
# delete_list(replica, tree-file-after, tree-file-current, deleted-list-file, deleted-failed-list-file): Creates a list of files vanished from last run on replica $1 (initiator/target)
2015-09-08 12:11:08 +00:00
function delete_list {
2015-09-10 15:48:57 +00:00
local replica_type = " ${ 1 } " # replica type: initiator, target
2015-09-09 11:31:42 +00:00
local tree_file_after = " ${ 2 } " # tree-file-after, will be prefixed with replica type
local tree_file_current = " ${ 3 } " # tree-file-current, will be prefixed with replica type
local deleted_list_file = " ${ 4 } " # file containing deleted file list, will be prefixed with replica type
local deleted_failed_list_file = " ${ 5 } " # file containing files that couldn't be deleted on last run, will be prefixed with replica type
2015-09-12 17:02:12 +00:00
__CheckArguments 5 $# $FUNCNAME " $* "
2015-09-09 12:50:21 +00:00
2015-09-09 16:59:23 +00:00
# TODO: Check why external filenames are used (see _DRYRUN option because of NOSUFFIX)
2015-09-08 17:17:26 +00:00
Logger " Creating $replica_type replica deleted file list. " "NOTICE"
2015-09-10 15:48:57 +00:00
if [ -f " $INITIATOR_STATE_DIR / $replica_type $TREE_AFTER_FILENAME_NO_SUFFIX " ] ; then
2014-05-26 22:50:46 +00:00
## Same functionnality, comm is much faster than grep but is not available on every platform
if type -p comm > /dev/null 2>& 1
2014-01-17 13:05:20 +00:00
then
2015-09-10 15:48:57 +00:00
cmd = " comm -23 \" $INITIATOR_STATE_DIR / $replica_type $TREE_AFTER_FILENAME_NO_SUFFIX \" \" $INITIATOR_STATE_DIR / $replica_type $tree_file_current \" > \" $INITIATOR_STATE_DIR / $replica_type $deleted_list_file \" "
2014-01-17 13:05:20 +00:00
else
2014-05-26 22:50:46 +00:00
## The || : forces the command to have a good result
2015-09-10 15:48:57 +00:00
cmd = " (grep -F -x -v -f \" $INITIATOR_STATE_DIR / $replica_type $tree_file_current \" \" $INITIATOR_STATE_DIR / $replica_type $TREE_AFTER_FILENAME_NO_SUFFIX \" || :) > \" $INITIATOR_STATE_DIR / $replica_type $deleted_list_file \" "
2014-01-17 13:05:20 +00:00
fi
2014-01-19 19:31:14 +00:00
2015-09-08 14:08:14 +00:00
Logger " CMD: $cmd " "DEBUG"
eval $cmd 2>> " $LOG_FILE "
2014-07-08 00:00:23 +00:00
retval = $?
# Add delete failed file list to current delete list and then empty it
2015-09-10 15:48:57 +00:00
if [ -f " $INITIATOR_STATE_DIR / $replica_type $deleted_failed_list_file " ] ; then
cat " $INITIATOR_STATE_DIR / $replica_type $deleted_failed_list_file " >> " $INITIATOR_STATE_DIR / $replica_type $deleted_list_file "
rm -f " $INITIATOR_STATE_DIR / $replica_type $deleted_failed_list_file "
2014-07-08 00:00:23 +00:00
fi
return $retval
2015-09-08 12:04:48 +00:00
else
2015-09-10 15:48:57 +00:00
touch " $INITIATOR_STATE_DIR / $replica_type $deleted_list_file "
2014-07-08 00:00:23 +00:00
return $retval
2015-09-08 12:04:48 +00:00
fi
2013-07-18 20:41:31 +00:00
}
2013-07-15 22:10:23 +00:00
2014-05-26 22:50:46 +00:00
# sync_update(source replica, destination replica, delete_list_filename)
2015-09-08 12:11:08 +00:00
function sync_update {
2015-09-10 15:48:57 +00:00
local source_replica = " ${ 1 } " # Contains replica type of source: initiator, target
local destination_replica = " ${ 2 } " # Contains replica type of destination: initiator, target
2015-09-09 09:23:47 +00:00
local delete_list_filename = " ${ 3 } " # Contains deleted list filename, will be prefixed with replica type
2015-09-12 17:02:12 +00:00
__CheckArguments 3 $# $FUNCNAME " $* "
2015-09-09 09:23:47 +00:00
Logger " Updating $destination_replica replica. " "NOTICE"
2015-09-10 15:48:57 +00:00
if [ " $source_replica " = = "initiator" ] ; then
SOURCE_DIR = " $INITIATOR_SYNC_DIR "
ESC_SOURCE_DIR = $( EscapeSpaces " $INITIATOR_SYNC_DIR " )
DEST_DIR = " $TARGET_SYNC_DIR "
ESC_DEST_DIR = $( EscapeSpaces " $TARGET_SYNC_DIR " )
BACKUP_DIR = " $TARGET_BACKUP "
2015-09-08 12:04:48 +00:00
else
2015-09-10 15:48:57 +00:00
SOURCE_DIR = " $TARGET_SYNC_DIR "
ESC_SOURCE_DIR = $( EscapeSpaces " $TARGET_SYNC_DIR " )
DEST_DIR = " $INITIATOR_SYNC_DIR "
ESC_DEST_DIR = $( EscapeSpaces " $INITIATOR_SYNC_DIR " )
BACKUP_DIR = " $INITIATOR_BACKUP "
2015-09-08 12:04:48 +00:00
fi
2014-05-25 17:09:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2015-09-10 15:48:57 +00:00
if [ " $source_replica " = = "initiator" ] ; then
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" $BACKUP_DIR --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE --exclude-from=\" $INITIATOR_STATE_DIR / $source_replica $delete_list_filename \" --exclude-from=\" $INITIATOR_STATE_DIR / $destination_replica $delete_list_filename \" \" $SOURCE_DIR /\" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_DEST_DIR /\" > $RUN_DIR /osync_update_ $destination_replica_replica_ $SCRIPT_PID 2>&1 & "
2014-01-17 13:05:20 +00:00
else
2015-09-10 15:48:57 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" $BACKUP_DIR --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE --exclude-from=\" $INITIATOR_STATE_DIR / $destination_replica $delete_list_filename \" --exclude-from=\" $INITIATOR_STATE_DIR / $source_replica $delete_list_filename \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_SOURCE_DIR /\" \" $DEST_DIR /\" > $RUN_DIR /osync_update_ $destination_replica_replica_ $SCRIPT_PID 2>&1 & "
2014-01-17 13:05:20 +00:00
fi
2013-07-21 19:40:55 +00:00
else
2015-09-10 15:48:57 +00:00
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $RSYNC_ARGS $SYNC_OPTS $BACKUP_DIR --exclude \" $OSYNC_DIR \" $RSYNC_EXCLUDE --exclude-from=\" $INITIATOR_STATE_DIR / $source_replica $delete_list_filename \" --exclude-from=\" $INITIATOR_STATE_DIR / $destination_replica $delete_list_filename \" \" $SOURCE_DIR /\" \" $DEST_DIR /\" > $RUN_DIR /osync_update_ $destination_replica_replica_ $SCRIPT_PID 2>&1 & "
2013-07-23 18:57:38 +00:00
fi
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2013-07-24 08:38:42 +00:00
eval " $rsync_cmd "
2015-09-08 12:04:48 +00:00
child_pid = $!
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] && [ -f $RUN_DIR /osync_update_$destination_replica_replica_ $SCRIPT_PID ] ; then
2015-09-09 09:23:47 +00:00
Logger " List:\n $( cat $RUN_DIR /osync_update_$destination_replica_replica_ $SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
if [ $retval != 0 ] && [ $retval != 24 ] ; then
2015-09-09 09:23:47 +00:00
Logger " Updating $destination_replica replica failed. Stopping execution. " "CRITICAL"
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 0 ] && [ -f $RUN_DIR /osync_update_$destination_replica_replica_ $SCRIPT_PID ] ; then
2015-09-09 09:23:47 +00:00
Logger " Rsync output:\n $( cat $RUN_DIR /osync_update_$destination_replica_replica_ $SCRIPT_PID ) " "NOTICE"
2014-01-17 13:05:20 +00:00
fi
2014-05-26 22:50:46 +00:00
exit $retval
2014-01-19 19:31:14 +00:00
else
2015-09-09 09:23:47 +00:00
Logger " Updating $destination_replica replica succeded. " "NOTICE"
2014-05-26 22:50:46 +00:00
return 0
2015-09-08 12:04:48 +00:00
fi
2013-07-18 20:41:31 +00:00
}
2014-07-08 00:00:23 +00:00
# delete_local(replica dir, delete file list, delete dir, delete failed file)
2015-09-08 12:11:08 +00:00
function _delete_local {
2015-09-09 11:31:42 +00:00
local replica_dir = " ${ 1 } " # Full path to replica
local deleted_list_file = " ${ 2 } " # file containing deleted file list, will be prefixed with replica type
local deletion_dir = " ${ 3 } " # deletion dir in format .[workdir]/deleted
local deleted_failed_list_file = " ${ 4 } " # file containing files that couldn't be deleted on last run, will be prefixed with replica type
2015-09-12 17:02:12 +00:00
__CheckArguments 4 $# $FUNCNAME " $* "
2015-09-09 11:31:42 +00:00
2014-05-25 15:51:05 +00:00
## On every run, check wheter the next item is already deleted because it's included in a directory already deleted
previous_file = ""
OLD_IFS = $IFS
IFS = $'\r\n'
2015-09-10 15:48:57 +00:00
for files in $( cat " $INITIATOR_STATE_DIR / $deleted_list_file " )
2015-09-08 12:04:48 +00:00
do
if [ [ " $files " != " $previous_file / " * ] ] && [ " $files " != "" ] ; then
if [ " $SOFT_DELETE " != "no" ] ; then
2015-09-09 11:31:42 +00:00
if [ ! -d " $replica_dir $deletion_dir " ] ; then
mkdir -p " $replica_dir $deletion_dir "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot create replica deletion directory." "ERROR"
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
2014-05-25 15:51:05 +00:00
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Soft deleting $replica_dir $files " "NOTICE"
2014-05-25 15:51:05 +00:00
fi
2014-05-25 17:09:30 +00:00
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-09 11:31:42 +00:00
if [ -e " $replica_dir $deletion_dir / $files " ] ; then
rm -rf " $replica_dir $deletion_dir / $files "
2015-06-24 19:43:00 +00:00
fi
2015-06-26 14:31:11 +00:00
# In order to keep full path on soft deletion, create parent directories before move
parentdir = " $( dirname " $files " ) "
2015-09-08 12:04:48 +00:00
if [ " $parentdir " != "." ] ; then
2015-09-09 11:31:42 +00:00
mkdir --parents " $replica_dir $deletion_dir / $parentdir "
mv -f " $replica_dir $files " " $replica_dir $deletion_dir / $parentdir "
2015-06-26 14:31:11 +00:00
else
2015-09-09 11:31:42 +00:00
mv -f " $replica_dir $files " " $replica_dir $deletion_dir "
2015-06-26 14:31:11 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Cannot move $replica_dir $files to deletion directory. " "ERROR"
2015-09-10 15:48:57 +00:00
echo " $files " >> " $INITIATOR_STATE_DIR / $deleted_failed_list_file "
2014-05-25 15:51:05 +00:00
fi
fi
2015-09-08 12:04:48 +00:00
else
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Deleting $replica_dir $files " "NOTICE"
2014-05-25 15:51:05 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-09 11:31:42 +00:00
rm -rf " $replica_dir $files "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Cannot delete $replica_dir $files " "ERROR"
2015-09-10 15:48:57 +00:00
echo " $files " >> " $INITIATOR_STATE_DIR / $deleted_failed_list_file "
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
2014-05-25 15:51:05 +00:00
fi
previous_file = " $files "
fi
2015-09-08 12:04:48 +00:00
done
2014-05-25 15:51:05 +00:00
IFS = $OLD_IFS
}
2015-09-08 12:11:08 +00:00
function _delete_remote {
2015-09-09 11:31:42 +00:00
local replica_dir = " ${ 1 } " # Full path to replica
local deleted_list_file = " ${ 2 } " # file containing deleted file list, will be prefixed with replica type
local deletion_dir = " ${ 3 } " # deletion dir in format .[workdir]/deleted
local deleted_failed_list_file = " ${ 4 } " # file containing files that couldn't be deleted on last run, will be prefixed with replica type
2015-09-12 17:02:12 +00:00
__CheckArguments 4 $# $FUNCNAME " $* "
2015-09-09 11:31:42 +00:00
2014-05-25 15:51:05 +00:00
## This is a special coded function. Need to redelcare local functions on remote host, passing all needed variables as escaped arguments to ssh command.
## Anything beetween << ENDSSH and ENDSSH will be executed remotely
# Additionnaly, we need to copy the deletetion list to the remote state folder
2015-09-10 15:48:57 +00:00
ESC_DEST_DIR = " $( EscapeSpaces " $TARGET_STATE_DIR " ) "
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" \" $INITIATOR_STATE_DIR / $2 \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_DEST_DIR /\" > $RUN_DIR /osync_remote_deletion_list_copy_ $SCRIPT_PID 2>&1 "
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2014-05-25 17:09:30 +00:00
eval $rsync_cmd 2>> " $LOG_FILE "
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot copy the deletion list to remote replica." "CRITICAL"
2015-09-08 12:04:48 +00:00
if [ -f $RUN_DIR /osync_remote_deletion_list_copy_$SCRIPT_PID ] ; then
2015-09-08 14:08:14 +00:00
Logger " $( cat $RUN_DIR /osync_remote_deletion_list_copy_$SCRIPT_PID ) " "CRITICAL" #TODO: remote deletion is critical. local deletion isn't. What to do ?
2014-05-25 15:51:05 +00:00
fi
exit 1
2014-01-19 19:31:14 +00:00
fi
2014-05-25 15:51:05 +00:00
2015-09-10 15:48:57 +00:00
$SSH_CMD error_alert = 0 sync_on_changes = $sync_on_changes _SILENT = $_SILENT _DEBUG = $_DEBUG _DRYRUN = $_DRYRUN _VERBOSE = $_VERBOSE COMMAND_SUDO = $COMMAND_SUDO FILE_LIST = " $( EscapeSpaces " $TARGET_STATE_DIR / $deleted_list_file " ) " REPLICA_DIR = " $( EscapeSpaces " $replica_dir " ) " DELETE_DIR = " $( EscapeSpaces " $deletion_dir " ) " FAILED_DELETE_LIST = " $( EscapeSpaces " $TARGET_STATE_DIR / $deleted_failed_list_file " ) " 'bash -s' << 'ENDSSH' > $RUN_DIR /osync_remote_deletion_$SCRIPT_PID 2>& 1 &
2014-05-25 15:51:05 +00:00
## The following lines are executed remotely
2015-09-08 14:08:14 +00:00
function _logger {
local value = " ${ 1 } " # What to log
echo -e " $value " >> " $LOG_FILE "
2015-09-08 12:04:48 +00:00
2015-09-09 16:59:23 +00:00
if [ $_SILENT -eq 0 ] ; then
2015-09-08 14:08:14 +00:00
echo -e " $value "
2015-09-08 12:04:48 +00:00
fi
2014-05-25 15:51:05 +00:00
}
2015-09-08 14:08:14 +00:00
function Logger {
local value = " ${ 1 } " # What to log
local level = " ${ 2 } " # Log level: DEBUG, NOTICE, WARN, ERROR, CRITIAL
2014-05-25 15:51:05 +00:00
2015-09-08 14:08:14 +00:00
# Special case in daemon mode we should timestamp instead of counting seconds
if [ $sync_on_changes -eq 1 ] ; then
prefix = " $( date) - "
else
2015-09-08 17:17:26 +00:00
prefix = " RTIME: $SECONDS - "
2015-09-08 14:08:14 +00:00
fi
if [ " $level " = = "CRITICAL" ] ; then
_logger " $prefix \e[41m $value \e[0m "
ERROR_ALERT = 1
elif [ " $level " = = "ERROR" ] ; then
_logger " $prefix \e[91m $value \e[0m "
ERROR_ALERT = 1
elif [ " $level " = = "WARN" ] ; then
_logger " $prefix \e[93m $value \e[0m "
elif [ " $level " = = "NOTICE" ] ; then
_logger " $prefix $value "
2015-09-08 17:17:26 +00:00
elif [ " $level " = = "DEBUG" ] ; then
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " = = "yes" ] ; then
2015-09-08 17:17:26 +00:00
_logger " $prefix $value "
fi
2015-09-08 14:08:14 +00:00
else
_logger "\e[41mLogger function called without proper loglevel.\e[0m"
_logger " $prefix $value "
fi
}
2014-07-08 00:00:23 +00:00
## Empty earlier failed delete list
> " $FAILED_DELETE_LIST "
2015-09-08 12:04:48 +00:00
## On every run, check wheter the next item is already deleted because it's included in a directory already deleted
previous_file = ""
2014-09-22 19:21:37 +00:00
OLD_IFS = $IFS
IFS = $'\r\n'
2015-09-08 12:04:48 +00:00
for files in $( cat " $FILE_LIST " )
do
if [ [ " $files " != " $previous_file / " * ] ] && [ " $files " != "" ] ; then
if [ ! -d " $REPLICA_DIR $DELETE_DIR " ] ; then
$COMMAND_SUDO mkdir -p " $REPLICA_DIR $DELETE_DIR "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "Cannot create replica deletion directory." "ERROR"
2015-09-08 12:04:48 +00:00
fi
fi
if [ " $SOFT_DELETE " != "no" ] ; then
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Soft deleting $REPLICA_DIR $files " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-08 12:04:48 +00:00
if [ -e " $REPLICA_DIR $DELETE_DIR / $files " ] ; then
2015-06-24 19:50:46 +00:00
$COMMAND_SUDO rm -rf " $REPLICA_DIR $DELETE_DIR / $files "
2015-06-24 19:43:00 +00:00
fi
2015-06-26 14:31:11 +00:00
# In order to keep full path on soft deletion, create parent directories before move
parentdir = " $( dirname " $files " ) "
2015-09-08 12:04:48 +00:00
if [ " $parentdir " != "." ] ; then
2015-06-26 14:31:11 +00:00
$COMMAND_SUDO mkdir --parents " $REPLICA_DIR $DELETE_DIR / $parentdir "
$COMMAND_SUDO mv -f " $REPLICA_DIR $files " " $REPLICA_DIR $DELETE_DIR / $parentdir "
else
$COMMAND_SUDO mv -f " $REPLICA_DIR $files " " $REPLICA_DIR $DELETE_DIR "
fi
2015-09-08 12:04:48 +00:00
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot move $REPLICA_DIR $files to deletion directory. " "ERROR"
2014-07-08 00:00:23 +00:00
echo " $files " >> " $FAILED_DELETE_LIST "
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
else
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Deleting $REPLICA_DIR $files " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-08 12:04:48 +00:00
$COMMAND_SUDO rm -rf " $REPLICA_DIR $files "
if [ $? != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Cannot delete $REPLICA_DIR $files " "ERROR"
2015-09-10 15:48:57 +00:00
echo " $files " >> " $TARGET_STATE_DIR / $FAILED_DELETE_LIST "
2014-05-25 15:51:05 +00:00
fi
2015-09-08 12:04:48 +00:00
fi
fi
previous_file = " $files "
fi
done
2014-09-22 19:21:37 +00:00
IFS = $OLD_IFS
2014-05-25 15:51:05 +00:00
ENDSSH
2014-07-08 00:00:23 +00:00
2014-05-25 17:09:30 +00:00
## Need to add a trivial sleep time to give ssh time to log to local file
sleep 5
2014-07-08 00:00:23 +00:00
## Copy back the deleted failed file list
2015-09-10 15:48:57 +00:00
ESC_SOURCE_FILE = " $( EscapeSpaces " $TARGET_STATE_DIR / $deleted_failed_list_file " ) "
rsync_cmd = " $( type -p $RSYNC_EXECUTABLE ) --rsync-path=\" $RSYNC_PATH \" $SYNC_OPTS -e \" $RSYNC_SSH_CMD \" $REMOTE_USER @ $REMOTE_HOST :\" $ESC_SOURCE_FILE \" \" $INITIATOR_STATE_DIR \" > $RUN_DIR /osync_remote_failed_deletion_list_copy_ $SCRIPT_PID "
2015-09-08 14:08:14 +00:00
Logger " RSYNC_CMD: $rsync_cmd " "DEBUG"
2015-09-08 12:04:48 +00:00
eval $rsync_cmd 2>> " $LOG_FILE "
if [ $? != 0 ] ; then
2015-09-10 15:48:57 +00:00
Logger "Cannot copy back the failed deletion list to initiator replica." "CRITICAL"
2015-09-08 12:04:48 +00:00
if [ -f $RUN_DIR /osync_remote_failed_deletion_list_copy_$SCRIPT_PID ] ; then
2015-09-08 14:08:14 +00:00
Logger " $( cat $RUN_DIR /osync_remote_failed_deletion_list_copy_$SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
fi
exit 1
fi
2014-07-08 00:00:23 +00:00
2014-05-25 15:51:05 +00:00
exit $?
}
2014-07-08 00:00:23 +00:00
# delete_propagation(replica name, deleted_list_filename, deleted_failed_file_list)
2015-09-08 12:11:08 +00:00
function deletion_propagation {
2015-09-10 15:48:57 +00:00
local replica_type = " ${ 1 } " # Contains replica type: initiator, target
2015-09-09 11:31:42 +00:00
local deleted_list_file = " ${ 2 } " # file containing deleted file list, will be prefixed with replica type
local deleted_failed_list_file = " ${ 3 } " # file containing files that couldn't be deleted on last run, will be prefixed with replica type
2015-09-12 17:02:12 +00:00
__CheckArguments 3 $# $FUNCNAME " $* "
2015-09-09 11:31:42 +00:00
Logger " Propagating deletions to $replica_type replica. " "NOTICE"
2014-05-25 17:09:30 +00:00
2015-09-10 15:48:57 +00:00
if [ " $replica_type " = = "initiator" ] ; then
REPLICA_DIR = " $INITIATOR_SYNC_DIR "
DELETE_DIR = " $INITIATOR_DELETE_DIR "
2014-05-25 15:51:05 +00:00
2015-09-10 15:48:57 +00:00
_delete_local " $REPLICA_DIR " " target $deleted_list_file " " $DELETE_DIR " " target $deleted_failed_list_file " &
2014-05-25 15:51:05 +00:00
child_pid = $!
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval != 0 ] ; then
2015-09-09 11:31:42 +00:00
Logger " Deletion on replica $replica_type failed. " "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
fi
2013-07-18 20:41:31 +00:00
else
2015-09-10 15:48:57 +00:00
REPLICA_DIR = " $TARGET_SYNC_DIR "
DELETE_DIR = " $TARGET_DELETE_DIR "
2013-07-19 23:00:58 +00:00
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
2015-09-10 15:48:57 +00:00
_delete_remote " $REPLICA_DIR " " initiator $deleted_list_file " " $DELETE_DIR " " initiator $deleted_failed_list_file " &
2014-05-25 15:51:05 +00:00
else
2015-09-10 15:48:57 +00:00
_delete_local " $REPLICA_DIR " " initiator $deleted_list_file " " $DELETE_DIR " " initiator $deleted_failed_list_file " &
2014-05-25 15:51:05 +00:00
fi
child_pid = $!
WaitForCompletion $child_pid $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval = = 0 ] ; then
2015-09-09 16:59:23 +00:00
if [ -f $RUN_DIR /osync_remote_deletion_$SCRIPT_PID ] && [ $_VERBOSE -eq 1 ] ; then
2015-09-08 14:08:14 +00:00
Logger " Remote:\n $( cat $RUN_DIR /osync_remote_deletion_$SCRIPT_PID ) " "DEBUG"
2014-05-25 17:09:30 +00:00
fi
2014-05-26 22:50:46 +00:00
return $retval
2014-05-25 15:51:05 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Deletion on remote system failed." "CRITICAL"
2015-09-08 12:04:48 +00:00
if [ -f $RUN_DIR /osync_remote_deletion_$SCRIPT_PID ] ; then
2015-09-08 14:08:14 +00:00
Logger " Remote:\n $( cat $RUN_DIR /osync_remote_deletion_$SCRIPT_PID ) " "CRITICAL"
2014-05-25 15:51:05 +00:00
fi
2014-05-26 22:50:46 +00:00
exit 1
2015-09-08 12:04:48 +00:00
fi
2013-07-24 08:38:42 +00:00
fi
2013-07-18 20:41:31 +00:00
}
2014-05-26 22:50:46 +00:00
###### Sync function in 5 steps of each 2 runs (functions above)
######
2015-09-10 15:48:57 +00:00
###### Step 1: Create current tree list for initiator and target replicas (Steps 1M and 1S)
###### Step 2: Create deleted file list for initiator and target replicas (Steps 2M and 2S)
###### Step 3: Update initiator and target replicas (Steps 3M and 3S, order depending on conflict prevalence)
###### Step 4: Deleted file propagation to initiator and target replicas (Steps 4M and 4S)
###### Step 5: Create after run tree list for initiator and target replicas (Steps 5M and 5S)
2014-05-26 22:50:46 +00:00
2015-09-08 12:11:08 +00:00
function Sync {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-08 14:08:14 +00:00
Logger "Starting synchronization task." "NOTICE"
2015-09-08 12:04:48 +00:00
CheckConnectivity3rdPartyHosts
CheckConnectivityRemoteHost
2013-07-18 20:41:31 +00:00
2015-09-10 15:48:57 +00:00
if [ -f " $INITIATOR_LAST_ACTION " ] && [ " $RESUME_SYNC " != "no" ] ; then
resume_sync = $( cat " $INITIATOR_LAST_ACTION " )
if [ -f " $INITIATOR_RESUME_COUNT " ] ; then
resume_count = $( cat " $INITIATOR_RESUME_COUNT " )
2013-07-19 10:49:40 +00:00
else
resume_count = 0
fi
2015-09-08 12:04:48 +00:00
if [ $resume_count -lt $RESUME_TRY ] ; then
if [ " $resume_sync " != "sync.success" ] ; then
2015-09-10 15:48:57 +00:00
Logger " WARNING: Trying to resume aborted osync execution on $( $STAT_CMD " $INITIATOR_LAST_ACTION " ) at task [ $resume_sync ]. [ $resume_count ] previous tries. " "WARN"
echo $(( $resume_count + 1 )) > " $INITIATOR_RESUME_COUNT "
2013-07-19 10:49:40 +00:00
else
resume_sync = none
fi
2013-07-18 20:41:31 +00:00
else
2015-09-08 14:08:14 +00:00
Logger " Will not resume aborted osync execution. Too much resume tries [ $resume_count ]. " "WARN"
2015-09-10 15:48:57 +00:00
echo "noresume" > " $INITIATOR_LAST_ACTION "
echo "0" > " $INITIATOR_RESUME_COUNT "
2013-07-18 20:41:31 +00:00
resume_sync = none
fi
else
resume_sync = none
fi
2013-07-30 22:18:39 +00:00
################################################################################################################################################# Actual sync begins here
2014-05-08 10:36:36 +00:00
## This replaces the case statement because ;& operator is not supported in bash 3.2... Code is more messy than case :(
2015-09-10 15:48:57 +00:00
if [ " $resume_sync " = = "none" ] || [ " $resume_sync " = = "noresume" ] || [ " $resume_sync " = = "initiator-replica-tree.fail" ] ; then
#initiator_tree_current
tree_list " $INITIATOR_SYNC_DIR " initiator " $TREE_CURRENT_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [0] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [0] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [0] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [1] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
#target_tree_current
tree_list " $TARGET_SYNC_DIR " target " $TREE_CURRENT_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [1] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [1] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [1] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [2] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
delete_list initiator " $TREE_AFTER_FILENAME " " $TREE_CURRENT_FILENAME " " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [2] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNc_ACTION [2] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [2] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
delete_list target " $TREE_AFTER_FILENAME " " $TREE_CURRENT_FILENAME " " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [3] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [3] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
2015-09-08 12:04:48 +00:00
fi
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .fail " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .fail " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .success " ] ; then
2015-09-10 15:48:57 +00:00
if [ " $CONFLICT_PREVALANCE " != "initiator" ] ; then
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
sync_update target initiator " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [4] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [4] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
sync_update initiator target " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [5] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [5] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
else
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [3] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
sync_update initiator target " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [5] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [5] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2015-09-08 12:04:48 +00:00
resume_sync = "resumed"
fi
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
sync_update target initiator " $DELETED_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [4] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [4] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2015-09-08 12:04:48 +00:00
resume_sync = "resumed"
fi
2013-07-30 22:18:39 +00:00
fi
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [5] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [4] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [6] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
deletion_propagation target " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [6] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [6] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [6] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [7] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
deletion_propagation initiator " $DELETED_LIST_FILENAME " " $FAILED_DELETE_LIST_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [7] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [7] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [7] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [8] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
#initiator_tree_after
tree_list " $INITIATOR_SYNC_DIR " initiator " $TREE_AFTER_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [8] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [8] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 12:04:48 +00:00
if [ " $resume_sync " = = "resumed" ] || [ " $resume_sync " = = " ${ SYNC_ACTION [8] } .success " ] || [ " $resume_sync " = = " ${ SYNC_ACTION [9] } .fail " ] ; then
2015-09-10 15:48:57 +00:00
#target_tree_after
tree_list " $TARGET_SYNC_DIR " target " $TREE_AFTER_FILENAME "
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [9] } .success " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
else
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [9] } .fail " > " $INITIATOR_LAST_ACTION "
2014-05-26 22:50:46 +00:00
fi
2013-07-30 22:18:39 +00:00
resume_sync = "resumed"
fi
2015-09-08 14:08:14 +00:00
Logger "Finished synchronization task." "NOTICE"
2015-09-10 15:48:57 +00:00
echo " ${ SYNC_ACTION [10] } " > " $INITIATOR_LAST_ACTION "
2014-01-19 19:31:14 +00:00
2015-09-10 15:48:57 +00:00
echo "0" > " $INITIATOR_RESUME_COUNT "
2013-07-18 20:41:31 +00:00
}
2015-09-11 17:39:57 +00:00
function _SoftDeleteLocal {
2015-09-12 10:57:27 +00:00
local replica_type = " ${ 1 } " # replica type (initiator, target)
local replica_deletion_path = " ${ 2 } " # Contains the full path to softdelete / backup directory without ending slash
local change_time = " ${ 3 } "
__CheckArguments 3 $# $FUNCNAME " $* "
2015-09-08 17:17:26 +00:00
2015-09-12 10:57:27 +00:00
if [ -d " $replica_deletion_path " ] ; then
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -eq 1 ] ; then
2015-09-12 10:57:27 +00:00
Logger " Listing files older than $change_time days on [ $replica_type ] replica. Won't remove anything. " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-12 10:57:27 +00:00
Logger " Removing files older than $change_time days on [ $replica_type ] replica. " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2015-03-30 23:46:07 +00:00
# Cannot launch log function from xargs, ugly hack
2015-09-12 10:57:27 +00:00
$FIND_CMD " $replica_deletion_path / " -type f -ctime +$change_time -print0 | xargs -0 -I { } echo "Will delete file {}" > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID
Logger " Command output:\n $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ) " "NOTICE"
$FIND_CMD " $replica_deletion_path / " -type d -empty -ctime +$change_time -print0 | xargs -0 -I { } echo "Will delete directory {}" > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID
Logger " Command output:\n $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ) " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -ne 1 ] ; then
2015-09-12 10:57:27 +00:00
$FIND_CMD " $replica_deletion_path / " -type f -ctime +$change_time -print0 | xargs -0 -I { } rm -f "{}" && $FIND_CMD " $replica_deletion_path / " -type d -empty -ctime +$change_time -print0 | xargs -0 -I { } rm -rf "{}" > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID 2>& 1 &
2013-07-21 19:40:55 +00:00
else
2015-03-30 23:46:07 +00:00
Dummy &
2013-07-16 11:55:15 +00:00
fi
2015-09-12 10:57:27 +00:00
WaitForCompletion $? $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
2015-09-08 12:04:48 +00:00
retval = $?
if [ $retval -ne 0 ] ; then
2015-09-12 10:57:27 +00:00
Logger " Error while executing cleanup on [ $replica_type ] replica. " "ERROR"
Logger " Command output:\n $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ) " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-12 10:57:27 +00:00
Logger " Cleanup complete on [ $replica_type ] replica. " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-09-12 10:57:27 +00:00
elif [ -d " $replica_deletion_path " ] && ! [ -w " $replica_deletion_path " ] ; then
Logger " Warning: [ $replica_type ] replica dir [ $replica_deletion_path ] isn't writable. Cannot clean old files. " "ERROR"
2013-07-16 11:55:15 +00:00
fi
2015-09-12 10:57:27 +00:00
}
2013-07-16 11:55:15 +00:00
2015-09-12 10:57:27 +00:00
function _SoftDeleteRemote {
local replica_type = " ${ 1 } "
local replica_deletion_path = " ${ 2 } " # Contains the full path to softdelete / backup directory without ending slash
local change_time" ${ 3 } "
__CheckArguments 3 $# $FUNCNAME " $* "
CheckConnectivity3rdPartyHosts
2015-09-12 17:02:12 +00:00
CheckConnectivityRemoteHost
2015-09-12 10:57:27 +00:00
if [ $_DRYRUN -eq 1 ] ; then
Logger " Listing files older than $change_time days on target replica. Won't remove anything. " "NOTICE"
2015-03-30 23:46:07 +00:00
else
2015-09-12 10:57:27 +00:00
Logger " Removing files older than $change_time days on target replica. " "NOTICE"
2013-07-16 11:55:15 +00:00
fi
2015-03-30 23:46:07 +00:00
2015-09-12 10:57:27 +00:00
if [ $_VERBOSE -eq 1 ] ; then
# Cannot launch log function from xargs, ugly hack
eval " $SSH_CMD \"if [ -w \\\" $replica_deletion_path \\\" ]; then $COMMAND_SUDO $REMOTE_FIND_CMD \\\" $replica_deletion_path /\\\" -type f -ctime + $change_time -print0 | xargs -0 -I {} echo Will delete file {} && $REMOTE_FIND_CMD \\\" $replica_deletion_path /\\\" -type d -empty -ctime $change_time -print0 | xargs -0 -I {} echo Will delete directory {}; fi\" " > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID
Logger " Command output:\n $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ) " "NOTICE"
fi
if [ $_DRYRUN -ne 1 ] ; then
eval " $SSH_CMD \"if [ -w \\\" $replica_deletion_path \\\" ]; then $COMMAND_SUDO $REMOTE_FIND_CMD \\\" $replica_deletion_path /\\\" -type f -ctime + $change_time -print0 | xargs -0 -I {} rm -f \\\"{}\\\" && $REMOTE_FIND_CMD \\\" $replica_deletion_path /\\\" -type d -empty -ctime $change_time -print0 | xargs -0 -I {} rm -rf \\\"{}\\\"; fi 2>&1\" " > $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID &
else
Dummy &
fi
WaitForCompletion $? $SOFT_MAX_EXEC_TIME $HARD_MAX_EXEC_TIME
retval = $?
if [ $retval -ne 0 ] ; then
Logger "Error while executing cleanup on remote target replica." "ERROR"
Logger " Command output:\n $( cat $RUN_DIR /osync_$FUNCNAME_ $SCRIPT_PID ) " "NOTICE"
else
Logger "Cleanup complete on target replica." "NOTICE"
fi
2013-07-15 22:10:23 +00:00
}
2015-09-11 17:39:57 +00:00
function SoftDelete {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-11 17:39:57 +00:00
if [ " $CONFLICT_BACKUP " != "no" ] && [ $CONFLICT_BACKUP_DAYS -ne 0 ] ; then
Logger "Running conflict backup cleanup." "NOTICE"
2015-09-12 10:57:27 +00:00
_SoftDeleteLocal "intiator" " $INITIATOR_SYNC_DIR $INITIATOR_BACKUP_DIR " $CONFLICT_BACKUP_DAYS
if [ " $REMOTE_SYNC " != "yes" ] ; then
_SoftDeleteLocal "target" " $TARGET_SYNC_DIR $TARGET_BACKUP_DIR " $CONFLICT_BACKUP_DAYS
else
_SoftDeleteRemote "target" " $TARGET_SYNC_DIR $TARGET_BACKUP_DIR " $CONFLICT_BACKUP_DAYS
fi
2015-09-11 17:39:57 +00:00
fi
if [ " $SOFT_DELETE " != "no" ] && [ $SOFT_DELETE_DAYS -ne 0 ] ; then
Logger "Running soft deletion cleanup." "NOTICE"
2015-09-12 10:57:27 +00:00
_SoftDeleteLocal "initiator" " $INITIATOR_SYNC_DIR $INITIATOR_DELETE_DIR " $SOFT_DELETE_DAYS
if [ " $REMOTE_SYNC " != "yes" ] ; then
_SoftDeleteLocal "target" " $TARGET_SYNC_DIR $TARGET_DELETE_DIR " $SOFT_DELETE_DAYS
else
_SoftDeleteRemote "target" " $TARGET_SYNC_DIR $TARGET_DELETE_DIR " $SOFT_DELETE_DAYS
fi
2015-09-11 17:39:57 +00:00
fi
}
2015-09-08 12:11:08 +00:00
function Init {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-08 12:04:48 +00:00
# Set error exit code if a piped command fails
set -o pipefail
set -o errtrace
2013-07-15 22:10:23 +00:00
2013-11-18 21:44:20 +00:00
# Do not use exit and quit traps if osync runs in monitor mode
2015-09-08 12:04:48 +00:00
if [ $sync_on_changes -eq 0 ] ; then
trap TrapStop SIGINT SIGKILL SIGHUP SIGTERM SIGQUIT
2014-01-19 19:31:14 +00:00
trap TrapQuit SIGKILL EXIT
else
trap TrapQuit SIGTERM EXIT SIGKILL SIGHUP SIGQUIT
2013-11-18 21:44:20 +00:00
fi
2015-09-09 16:59:23 +00:00
if [ " $_DEBUG " = = "yes" ] ; then
2015-09-08 12:04:48 +00:00
trap 'TrapError ${LINENO} $?' ERR
fi
2013-07-15 22:10:23 +00:00
2015-09-08 12:04:48 +00:00
MAIL_ALERT_MSG = " Warning: Execution of osync instance $OSYNC_ID (pid $SCRIPT_PID ) as $LOCAL_USER @ $LOCAL_HOST produced errors on $( date) . "
2013-07-15 22:10:23 +00:00
2015-09-10 15:48:57 +00:00
## Test if target dir is a ssh uri, and if yes, break it down it its values
if [ " ${ TARGET_SYNC_DIR : 0 : 6 } " = = "ssh://" ] ; then
2015-09-08 12:04:48 +00:00
REMOTE_SYNC = "yes"
# remove leadng 'ssh://'
2015-09-10 15:48:57 +00:00
uri = ${ TARGET_SYNC_DIR #ssh : //* }
2015-09-08 12:04:48 +00:00
if [ [ " $uri " = = *"@" * ] ] ; then
# remove everything after '@'
REMOTE_USER = ${ uri %@* }
2015-06-26 15:54:49 +00:00
else
REMOTE_USER = $LOCAL_USER
2015-09-08 12:04:48 +00:00
fi
2015-04-06 21:50:08 +00:00
2015-09-08 12:04:48 +00:00
if [ " $SSH_RSA_PRIVATE_KEY " = = "" ] ; then
2013-11-18 20:16:31 +00:00
SSH_RSA_PRIVATE_KEY = ~/.ssh/id_rsa
fi
2015-06-26 15:23:05 +00:00
2015-09-08 12:04:48 +00:00
# remove everything before '@'
_hosturiandpath = ${ uri #*@ }
2015-06-26 15:23:05 +00:00
# remove everything after first '/'
2015-09-08 12:04:48 +00:00
_hosturi = ${ _hosturiandpath %%/* }
if [ [ " $_hosturi " = = *":" * ] ] ; then
2015-06-26 15:54:49 +00:00
REMOTE_PORT = ${ _hosturi ##* : }
else
2013-11-18 20:16:31 +00:00
REMOTE_PORT = 22
fi
2015-06-26 15:54:49 +00:00
REMOTE_HOST = ${ _hosturi %% : * }
2015-06-26 15:23:05 +00:00
# remove everything before first '/'
2015-09-10 15:48:57 +00:00
TARGET_SYNC_DIR = ${ _hosturiandpath #*/ }
2015-09-08 12:04:48 +00:00
fi
2013-11-14 20:20:13 +00:00
2014-01-19 19:31:14 +00:00
## Make sure there is only one trailing slash on path
2015-09-10 15:48:57 +00:00
INITIATOR_SYNC_DIR = " ${ INITIATOR_SYNC_DIR %/ } / "
TARGET_SYNC_DIR = " ${ TARGET_SYNC_DIR %/ } / "
2013-07-24 08:38:42 +00:00
2015-09-10 15:48:57 +00:00
INITIATOR_STATE_DIR = " $INITIATOR_SYNC_DIR $OSYNC_DIR /state "
TARGET_STATE_DIR = " $TARGET_SYNC_DIR $OSYNC_DIR /state "
2013-11-04 21:11:43 +00:00
STATE_DIR = " $OSYNC_DIR /state "
2015-09-10 19:42:11 +00:00
INITIATOR_LOCKFILE = " $INITIATOR_STATE_DIR /lock "
TARGET_LOCKFILE = " $TARGET_STATE_DIR /lock "
2014-01-19 19:31:14 +00:00
2013-07-15 22:10:23 +00:00
## Working directories to keep backups of updated / deleted files
2015-09-10 15:48:57 +00:00
INITIATOR_BACKUP_DIR = " $OSYNC_DIR /backups "
INITIATOR_DELETE_DIR = " $OSYNC_DIR /deleted "
TARGET_BACKUP_DIR = " $OSYNC_DIR /backups "
TARGET_DELETE_DIR = " $OSYNC_DIR /deleted "
2014-05-25 17:09:30 +00:00
2014-11-24 18:26:17 +00:00
## Partial downloads dirs
2014-11-24 23:38:03 +00:00
PARTIAL_DIR = $OSYNC_DIR "_partial"
2014-11-24 18:26:17 +00:00
2013-07-17 09:34:05 +00:00
## SSH compression
2015-09-08 12:04:48 +00:00
if [ " $SSH_COMPRESSION " != "no" ] ; then
2013-07-17 09:34:05 +00:00
SSH_COMP = -C
else
SSH_COMP =
fi
2013-07-20 11:43:11 +00:00
## Define which runner (local bash or distant ssh) to use for standard commands and rsync commands
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_SYNC " = = "yes" ] ; then
2013-10-10 18:17:40 +00:00
SSH_CMD = " $( type -p ssh) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY $REMOTE_USER @ $REMOTE_HOST -p $REMOTE_PORT "
2014-05-25 15:51:05 +00:00
SCP_CMD = " $( type -p scp) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY -P $REMOTE_PORT "
2013-10-10 18:17:40 +00:00
RSYNC_SSH_CMD = " $( type -p ssh) $SSH_COMP -i $SSH_RSA_PRIVATE_KEY -p $REMOTE_PORT "
2013-07-16 11:55:15 +00:00
fi
2013-07-16 21:06:26 +00:00
2013-10-10 18:28:40 +00:00
## Support for older config files without RSYNC_EXECUTABLE option
2015-09-08 12:04:48 +00:00
if [ " $RSYNC_EXECUTABLE " = = "" ] ; then
RSYNC_EXECUTABLE = rsync
fi
## Sudo execution option
if [ " $SUDO_EXEC " = = "yes" ] ; then
if [ " $RSYNC_REMOTE_PATH " != "" ] ; then
RSYNC_PATH = " sudo $RSYNC_REMOTE_PATH / $RSYNC_EXECUTABLE "
else
RSYNC_PATH = " sudo $RSYNC_EXECUTABLE "
fi
COMMAND_SUDO = "sudo"
else
if [ " $RSYNC_REMOTE_PATH " != "" ] ; then
RSYNC_PATH = " $RSYNC_REMOTE_PATH / $RSYNC_EXECUTABLE "
else
RSYNC_PATH = " $RSYNC_EXECUTABLE "
fi
COMMAND_SUDO = ""
fi
2013-07-22 09:34:58 +00:00
2014-05-21 16:33:16 +00:00
## Set rsync default arguments
RSYNC_ARGS = "-rlptgoD"
2015-09-08 12:04:48 +00:00
if [ " $PRESERVE_ACL " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -A"
fi
if [ " $PRESERVE_XATTR " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -X"
fi
if [ " $RSYNC_COMPRESS " = = "yes" ] ; then
RSYNC_ARGS = $RSYNC_ARGS " -z"
fi
if [ " $COPY_SYMLINKS " = = "yes" ] ; then
2014-05-27 09:35:45 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -L"
fi
2015-09-08 12:04:48 +00:00
if [ " $KEEP_DIRLINKS " = = "yes" ] ; then
2014-05-27 17:58:59 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -K"
fi
2015-09-08 12:04:48 +00:00
if [ " $PRESERVE_HARDLINKS " = = "yes" ] ; then
2014-05-27 09:35:45 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -H"
2014-05-08 10:36:36 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ " $CHECKSUM " = = "yes" ] ; then
2015-04-13 19:33:43 +00:00
RSYNC_ARGS = $RSYNC_ARGS " --checksum"
fi
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -eq 1 ] ; then
2014-05-27 09:35:45 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -n"
2013-07-16 21:06:26 +00:00
DRY_WARNING = "/!\ DRY RUN"
2013-07-22 09:34:58 +00:00
fi
2013-07-16 21:33:30 +00:00
2015-09-08 12:04:48 +00:00
if [ " $BANDWIDTH " != "" ] && [ " $BANDWIDTH " != "0" ] ; then
2013-08-04 13:20:26 +00:00
RSYNC_ARGS = $RSYNC_ARGS " --bwlimit= $BANDWIDTH "
fi
2014-05-25 15:51:05 +00:00
## Set sync only function arguments for rsync
SYNC_OPTS = "-u"
2014-05-25 17:09:30 +00:00
2015-09-09 16:59:23 +00:00
if [ $_VERBOSE -eq 1 ] ; then
2014-05-25 15:51:05 +00:00
SYNC_OPTS = $SYNC_OPTS "i"
fi
2015-09-08 12:04:48 +00:00
if [ $stats -eq 1 ] ; then
2014-05-25 15:51:05 +00:00
SYNC_OPTS = $SYNC_OPTS " --stats"
fi
2015-09-08 12:04:48 +00:00
if [ " $PARTIAL " = = "yes" ] ; then
2014-11-24 18:26:17 +00:00
SYNC_OPTS = $SYNC_OPTS " --partial --partial-dir=\" $PARTIAL_DIR \" "
2014-11-26 10:25:58 +00:00
RSYNC_EXCLUDE = " $RSYNC_EXCLUDE --exclude=\" $PARTIAL_DIR \" "
2014-11-24 18:26:17 +00:00
fi
2013-07-16 21:33:30 +00:00
## Conflict options
2015-09-08 12:04:48 +00:00
if [ " $CONFLICT_BACKUP " != "no" ] ; then
2015-09-10 15:48:57 +00:00
INITIATOR_BACKUP = " --backup --backup-dir=\" $INITIATOR_BACKUP_DIR \" "
TARGET_BACKUP = " --backup --backup-dir=\" $TARGET_BACKUP_DIR \" "
2015-09-08 12:04:48 +00:00
if [ " $CONFLICT_BACKUP_MULTIPLE " = = "yes" ] ; then
2015-09-10 15:48:57 +00:00
INITIATOR_BACKUP = " $INITIATOR_BACKUP --suffix . $( date +%Y.%m.%d-%H.%M.%S) "
TARGET_BACKUP = " $TARGET_BACKUP --suffix . $( date +%Y.%m.%d-%H.%M.%S) "
2015-09-08 12:04:48 +00:00
fi
2013-07-16 21:33:30 +00:00
else
2015-09-10 15:48:57 +00:00
INITIATOR_BACKUP =
TARGET_BACKUP =
2013-07-16 21:33:30 +00:00
fi
2013-07-19 16:15:25 +00:00
## Add Rsync exclude patterns
RsyncExcludePattern
2014-05-08 10:36:36 +00:00
## Add Rsync exclude from file
RsyncExcludeFrom
2014-05-26 22:50:46 +00:00
## Filenames for state files
2015-09-09 16:59:23 +00:00
if [ $_DRYRUN -eq 1 ] ; then
2014-05-26 22:50:46 +00:00
dry_suffix = "-dry"
fi
TREE_CURRENT_FILENAME = " -tree-current- $SYNC_ID $dry_suffix "
TREE_AFTER_FILENAME = " -tree-after- $SYNC_ID $dry_suffix "
2014-05-27 10:47:50 +00:00
TREE_AFTER_FILENAME_NO_SUFFIX = " -tree-after- $SYNC_ID "
2014-07-08 00:00:23 +00:00
DELETED_LIST_FILENAME = " -deleted-list- $SYNC_ID $dry_suffix "
FAILED_DELETE_LIST_FILENAME = " -failed-delete- $SYNC_ID $dry_suffix "
2015-09-10 15:48:57 +00:00
INITIATOR_LAST_ACTION = " $INITIATOR_STATE_DIR /last-action- $SYNC_ID $dry_suffix "
INITIATOR_RESUME_COUNT = " $INITIATOR_STATE_DIR /resume-count- $SYNC_ID $dry_suffix "
2014-05-26 22:50:46 +00:00
## Sync function actions (0-9)
SYNC_ACTION = (
2015-09-10 15:48:57 +00:00
'initiator-replica-tree'
'target-replica-tree'
'initiator-deleted-list'
'target-deleted-list'
'update-initiator-replica'
'update-target-replica'
'delete-propagation-target'
'delete-propagation-initiator'
'initiator-replica-tree-after'
'target-replica-tree-after'
2014-05-26 22:50:46 +00:00
'sync.success'
)
2014-09-22 19:21:37 +00:00
2015-09-08 12:04:48 +00:00
## Set compression executable and extension
2015-02-18 14:03:45 +00:00
COMPRESSION_LEVEL = 3
2015-09-08 12:04:48 +00:00
if type -p xz > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | xz - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .xz
elif type -p lzma > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | lzma - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .lzma
elif type -p pigz > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | pigz - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .gz
COMPRESSION_OPTIONS = --rsyncable
elif type -p gzip > /dev/null 2>& 1
then
COMPRESSION_PROGRAM = " | gzip - $COMPRESSION_LEVEL "
COMPRESSION_EXTENSION = .gz
COMPRESSION_OPTIONS = --rsyncable
else
2014-09-22 19:21:37 +00:00
COMPRESSION_PROGRAM =
2015-09-08 12:04:48 +00:00
COMPRESSION_EXTENSION =
fi
2014-09-22 19:21:37 +00:00
ALERT_LOG_FILE = " $ALERT_LOG_FILE $COMPRESSION_EXTENSION "
2014-05-26 22:50:46 +00:00
}
2015-09-08 12:11:08 +00:00
function InitLocalOSSettings {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2014-11-24 09:12:48 +00:00
## If running under Msys, some commands don't run the same way
## Using mingw version of find instead of windows one
## Getting running processes is quite different
## Ping command isn't the same
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_OS " = = "msys" ] ; then
2014-05-26 22:50:46 +00:00
FIND_CMD = $( dirname $BASH ) /find
2015-09-09 07:38:05 +00:00
#TODO: The following command needs to be checked on msys. Does the $1 variable substitution work ?
# PROCESS_TEST_CMD assumes there is a variable $pid
PROCESS_TEST_CMD = 'ps -a | awk "{\$1=\$1}\$1" | awk "{print \$1}" | grep $pid'
2014-11-24 09:12:48 +00:00
PING_CMD = "ping -n 2"
2014-05-26 22:50:46 +00:00
else
FIND_CMD = find
2015-09-09 07:38:05 +00:00
# PROCESS_TEST_CMD assumes there is a variable $pid
PROCESS_TEST_CMD = 'ps -p$pid'
2014-11-24 09:12:48 +00:00
PING_CMD = "ping -c 2 -i .2"
2014-05-26 22:50:46 +00:00
fi
## Stat command has different syntax on Linux and FreeBSD/MacOSX
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_OS " = = "MacOSX" ] || [ " $LOCAL_OS " = = "BSD" ] ; then
2014-05-26 22:50:46 +00:00
STAT_CMD = "stat -f \"%Sm\""
else
STAT_CMD = "stat --format %y"
fi
}
2015-09-08 12:11:08 +00:00
function InitRemoteOSSettings {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2014-05-26 22:50:46 +00:00
## MacOSX does not use the -E parameter like Linux or BSD does (-E is mapped to extended attrs instead of preserve executability)
2015-09-08 12:04:48 +00:00
if [ " $LOCAL_OS " != "MacOSX" ] && [ " $REMOTE_OS " != "MacOSX" ] ; then
2014-05-27 09:35:45 +00:00
RSYNC_ARGS = $RSYNC_ARGS " -E"
2014-05-26 22:50:46 +00:00
fi
2015-09-08 12:04:48 +00:00
if [ " $REMOTE_OS " = = "msys" ] ; then
2014-05-26 22:50:46 +00:00
REMOTE_FIND_CMD = $( dirname $BASH ) /find
else
REMOTE_FIND_CMD = find
fi
2013-06-18 11:34:14 +00:00
}
2015-09-08 12:11:08 +00:00
function Main {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2015-09-10 15:48:57 +00:00
CreateStateDirs
2015-09-11 17:39:57 +00:00
CheckLocks
2013-07-15 22:10:23 +00:00
Sync
}
2015-09-08 12:11:08 +00:00
function Usage {
2014-01-19 19:31:14 +00:00
echo " $PROGRAM $PROGRAM_VERSION $PROGRAM_BUILD "
echo $AUTHOR
echo $CONTACT
2013-07-15 22:10:23 +00:00
echo ""
2015-09-10 15:48:57 +00:00
echo -e "\e[41mWARNING: This is an unstable dev build\e[0m"
2013-11-14 20:20:13 +00:00
echo "You may use Osync with a full blown configuration file, or use its default options for quick command line sync."
2015-03-28 19:06:17 +00:00
echo "Usage: osync.sh /path/to/config/file [OPTIONS]"
2015-09-10 15:48:57 +00:00
echo "or osync.sh --initiator=/path/to/initiator/replica --target=/path/to/target/replica [OPTIONS] [QUICKSYNC OPTIONS]"
echo "or osync.sh --initiator=/path/to/initiator/replica --target=ssh://[backupuser]@remotehost.com[:portnumber]//path/to/target/replica [OPTIONS] [QUICKSYNC OPTIONS]"
2013-07-15 22:10:23 +00:00
echo ""
2014-01-19 19:31:14 +00:00
echo "[OPTIONS]"
2013-11-18 22:36:52 +00:00
echo "--dry Will run osync without actually doing anything; just testing"
echo "--silent Will run osync without any output to stdout, used for cron jobs"
echo "--verbose Increases output"
2014-05-27 12:18:48 +00:00
echo "--stats Adds rsync transfer statistics to verbose output"
2014-11-24 23:38:03 +00:00
echo "--partial Allows rsync to keep partial downloads that can be resumed later (experimental)"
2013-11-18 22:36:52 +00:00
echo "--no-maxtime Disables any soft and hard execution time checks"
2015-09-10 15:48:57 +00:00
echo "--force-unlock Will override any existing active or dead locks on initiator and target replica"
echo "--on-changes Will launch a sync task after a short wait period if there is some file activity on initiator replica. You should try daemon mode instead"
2013-11-03 19:29:17 +00:00
echo ""
2013-11-18 22:36:52 +00:00
echo "[QUICKSYNC OPTIONS]"
2015-09-10 15:48:57 +00:00
echo "--initiator=\"\" Master replica path. Will contain state and backup directory (is mandatory)"
echo "--target=\"\" Local or remote target replica path. Can be a ssh uri like ssh://user@host.com:22//path/to/target/replica (is mandatory)"
echo "--rsakey=\"\" Alternative path to rsa private key for ssh connection to target replica"
echo "--sync-id=\"\" Optional sync task name to identify this synchronization task when using multiple targets"
2015-03-28 19:06:17 +00:00
echo ""
echo "Additionnaly, you may set most osync options at runtime. eg:"
2015-09-10 15:48:57 +00:00
echo "SOFT_DELETE_DAYS=365 osync.sh --initiator=/path --target=/other/path"
2015-04-01 09:02:03 +00:00
echo ""
2013-07-15 22:10:23 +00:00
exit 128
}
2015-09-08 12:11:08 +00:00
function SyncOnChanges {
2015-09-12 17:33:53 +00:00
__CheckArguments 0 $# $FUNCNAME " $* "
2013-11-18 21:44:20 +00:00
if ! type -p inotifywait > /dev/null 2>& 1
then
2015-09-08 14:08:14 +00:00
Logger "No inotifywait command found. Cannot monitor changes." "CRITICAL"
2015-09-08 12:04:48 +00:00
exit 1
2013-11-18 21:44:20 +00:00
fi
2015-09-08 14:08:14 +00:00
Logger "#### Running Osync in file monitor mode." "NOTICE"
2013-11-18 21:50:07 +00:00
2013-11-18 21:44:20 +00:00
while true
do
2015-09-08 12:04:48 +00:00
if [ " $ConfigFile " != "" ] ; then
2015-03-28 21:44:41 +00:00
cmd = " bash $osync_cmd \" $ConfigFile \" $opts "
2013-11-25 12:20:53 +00:00
else
2015-03-28 21:44:41 +00:00
cmd = " bash $osync_cmd $opts "
2013-11-25 12:20:53 +00:00
fi
eval $cmd
2014-05-27 18:08:07 +00:00
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval != 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger "osync child exited with error." "CRITICAL"
2014-05-27 17:58:59 +00:00
exit $retval
2014-01-19 19:31:14 +00:00
fi
2015-09-08 14:08:14 +00:00
Logger "#### Monitoring now." "NOTICE"
2015-09-10 15:48:57 +00:00
inotifywait --exclude $OSYNC_DIR $RSYNC_EXCLUDE -qq -r -e create -e modify -e delete -e move -e attrib --timeout " $MAX_WAIT " " $INITIATOR_SYNC_DIR " &
2014-01-19 19:31:14 +00:00
sub_pid = $!
wait $sub_pid
2015-03-28 20:37:51 +00:00
retval = $?
2015-09-08 12:04:48 +00:00
if [ $retval = = 0 ] ; then
2015-09-08 14:08:14 +00:00
Logger " #### Changes detected, waiting $MIN_WAIT seconds before running next sync. " "NOTICE"
2015-03-28 20:37:51 +00:00
sleep $MIN_WAIT
2015-09-08 12:04:48 +00:00
elif [ $retval = = 2 ] ; then
2015-09-08 14:08:14 +00:00
Logger " #### $MAX_WAIT timeout reached, running sync. " "NOTICE"
2015-03-28 20:37:51 +00:00
else
2015-09-08 14:08:14 +00:00
Logger " #### inotify error detected, waiting $MIN_WAIT seconds before running next sync. " "ERROR"
2015-03-28 20:37:51 +00:00
sleep $MIN_WAIT
fi
2013-11-18 21:44:20 +00:00
done
}
2013-07-15 22:10:23 +00:00
# Comand line argument flags
2015-09-09 16:59:23 +00:00
_DRYRUN = 0
_SILENT = 0
if [ " $_DEBUG " = = "yes" ]
2014-11-28 11:10:00 +00:00
then
2015-09-09 16:59:23 +00:00
_VERBOSE = 1
2014-11-28 11:10:00 +00:00
else
2015-09-09 16:59:23 +00:00
_VERBOSE = 0
2014-11-28 11:10:00 +00:00
fi
2015-09-09 16:59:23 +00:00
2014-05-25 15:51:05 +00:00
stats = 0
2014-11-24 18:26:17 +00:00
PARTIAL = 0
2015-09-10 19:42:11 +00:00
FORCE_UNLOCK = 0
2013-08-04 07:47:47 +00:00
no_maxtime = 0
2013-07-15 22:10:23 +00:00
# Alert flags
2013-11-18 22:50:39 +00:00
opts = ""
2013-07-15 22:10:23 +00:00
soft_alert_total = 0
error_alert = 0
2013-07-16 21:06:26 +00:00
soft_stop = 0
2013-11-03 19:29:17 +00:00
quick_sync = 0
2013-11-18 21:44:20 +00:00
sync_on_changes = 0
2015-09-10 07:13:02 +00:00
_NOLOCKS = 0
2013-11-18 21:44:20 +00:00
osync_cmd = $0
2013-07-15 22:10:23 +00:00
if [ $# -eq 0 ]
then
Usage
fi
2015-03-29 15:57:06 +00:00
first = 1
2013-07-15 22:10:23 +00:00
for i in " $@ "
do
case $i in
--dry)
2015-09-09 16:59:23 +00:00
_DRYRUN = 1
2013-11-18 22:50:39 +00:00
opts = $opts " --dry"
2013-07-15 22:10:23 +00:00
; ;
2015-09-09 16:59:23 +00:00
--_SILENT)
_SILENT = 1
opts = $opts " --_SILENT"
2013-07-15 22:10:23 +00:00
; ;
2013-07-20 11:43:11 +00:00
--verbose)
2015-09-09 16:59:23 +00:00
_VERBOSE = 1
opts = $opts " --_VERBOSE"
2013-07-20 11:43:11 +00:00
; ;
2014-05-25 15:51:05 +00:00
--stats)
stats = 1
opts = $opts " --stats"
; ;
2014-11-24 18:26:17 +00:00
--partial)
PARTIAL = "yes"
opts = $opts " --partial"
; ;
2013-07-21 19:40:55 +00:00
--force-unlock)
2015-09-10 19:42:11 +00:00
FORCE_UNLOCK = 1
2013-11-18 22:50:39 +00:00
opts = $opts " --force-unlock"
2013-07-21 19:40:55 +00:00
; ;
2013-08-04 07:47:47 +00:00
--no-maxtime)
no_maxtime = 1
2013-11-18 22:50:39 +00:00
opts = $opts " --no-maxtime"
2013-08-04 07:47:47 +00:00
; ;
2013-07-20 11:43:11 +00:00
--help| -h| --version| -v)
2013-07-15 22:10:23 +00:00
Usage
; ;
2015-09-10 15:48:57 +00:00
--initiator= *)
2013-11-03 19:29:17 +00:00
quick_sync = $(( $quick_sync + 1 ))
no_maxtime = 1
2015-09-10 15:48:57 +00:00
INITIATOR_SYNC_DIR = ${ i ##*= }
opts = $opts " --initiator=\" $INITIATOR_SYNC_DIR \" "
2013-11-03 19:29:17 +00:00
; ;
2015-09-10 15:48:57 +00:00
--target= *)
2013-11-03 19:29:17 +00:00
quick_sync = $(( $quick_sync + 1 ))
2015-09-10 15:48:57 +00:00
TARGET_SYNC_DIR = ${ i ##*= }
opts = $opts " --target=\" $TARGET_SYNC_DIR \" "
2013-11-03 19:29:17 +00:00
no_maxtime = 1
; ;
2013-11-18 20:16:31 +00:00
--rsakey= *)
SSH_RSA_PRIVATE_KEY = ${ i ##*= }
2013-11-25 12:20:53 +00:00
opts = $opts " --rsakey=\" $SSH_RSA_PRIVATE_KEY \" "
2013-11-18 20:16:31 +00:00
; ;
2014-05-08 10:36:36 +00:00
--sync-id= *)
SYNC_ID = ${ i ##*= }
opts = $opts " --sync-id=\" $SYNC_ID \" "
; ;
2013-11-18 21:44:20 +00:00
--on-changes)
sync_on_changes = 1
2015-09-10 07:13:02 +00:00
_NOLOCKS = 1
2013-11-18 21:44:20 +00:00
; ;
2013-11-25 12:20:53 +00:00
--no-locks)
2015-09-10 07:13:02 +00:00
_NOLOCKS = 1
2013-11-25 12:20:53 +00:00
; ;
2015-03-29 15:57:06 +00:00
*)
2015-09-08 12:04:48 +00:00
if [ $first = = "0" ] ; then
2015-09-08 14:08:14 +00:00
Logger " Unknown option ' $i ' " "CRITICAL"
2015-03-29 15:57:06 +00:00
Usage
fi
; ;
2013-07-15 22:10:23 +00:00
esac
2015-03-29 15:57:06 +00:00
first = 0
2013-07-15 22:10:23 +00:00
done
2013-11-25 12:20:53 +00:00
# Remove leading space if there is one
opts = " ${ opts # * } "
2013-07-15 22:10:23 +00:00
CheckEnvironment
if [ $? = = 0 ]
then
2014-05-08 10:36:36 +00:00
## Here we set default options for quicksync tasks when no configuration file is provided.
2015-09-08 12:04:48 +00:00
if [ $quick_sync -eq 2 ] ; then
if [ " $SYNC_ID " = = "" ] ; then
2015-09-11 17:39:57 +00:00
SYNC_ID = "quicksync_task"
2014-05-08 10:36:36 +00:00
fi
2015-03-28 19:06:17 +00:00
# Let the possibility to initialize those values directly via command line like SOFT_DELETE_DAYS=60 ./osync.sh
2015-09-08 12:04:48 +00:00
if [ " $MINIMUM_SPACE " = = "" ] ; then
2015-03-28 19:06:17 +00:00
MINIMUM_SPACE = 1024
fi
2015-09-08 12:04:48 +00:00
if [ " $CONFLICT_BACKUP_DAYS " = = "" ] ; then
2015-03-28 19:06:17 +00:00
CONFLICT_BACKUP_DAYS = 30
fi
2015-09-08 12:04:48 +00:00
if [ " $SOFT_DELETE_DAYS " = = "" ] ; then
2015-03-28 19:06:17 +00:00
SOFT_DELETE_DAYS = 30
fi
2015-09-08 12:04:48 +00:00
if [ " $RESUME_TRY " = = "" ] ; then
2015-03-28 19:06:17 +00:00
RESUME_TRY = 1
fi
2015-09-08 12:04:48 +00:00
if [ " $SOFT_MAX_EXEC_TIME " = = "" ] ; then
2015-03-28 19:06:17 +00:00
SOFT_MAX_EXEC_TIME = 0
fi
2015-09-08 12:04:48 +00:00
if [ " $HARD_MAX_EXEC_TIME " = = "" ] ; then
2015-03-28 19:06:17 +00:00
HARD_MAX_EXEC_TIME = 0
fi
2014-01-19 19:31:14 +00:00
MIN_WAIT = 30
2015-03-28 19:06:17 +00:00
REMOTE_SYNC = no
2013-11-03 19:29:17 +00:00
else
2015-09-09 12:50:21 +00:00
ConfigFile = " ${ 1 } "
2013-11-18 21:44:20 +00:00
LoadConfigFile " $ConfigFile "
2013-11-03 19:29:17 +00:00
fi
2014-11-29 14:07:09 +00:00
2015-09-08 12:04:48 +00:00
if [ " $LOGFILE " = = "" ] ; then
if [ -w /var/log ] ; then
2014-11-29 14:07:09 +00:00
LOG_FILE = /var/log/osync_$SYNC_ID .log
else
LOG_FILE = ./osync_$SYNC_ID .log
fi
2015-09-08 12:04:48 +00:00
else
LOG_FILE = " $LOGFILE "
fi
2014-11-29 14:07:09 +00:00
GetLocalOS
InitLocalOSSettings
2013-11-03 19:29:17 +00:00
Init
2014-05-26 22:50:46 +00:00
GetRemoteOS
InitRemoteOSSettings
2015-09-08 12:04:48 +00:00
if [ $sync_on_changes -eq 1 ] ; then
2014-03-23 20:57:57 +00:00
SyncOnChanges
2014-03-09 16:54:45 +00:00
else
DATE = $( date)
2015-09-08 14:08:14 +00:00
Logger "-------------------------------------------------------------" "NOTICE"
Logger " $DRY_WARNING $DATE - $PROGRAM $PROGRAM_VERSION script begin. " "NOTICE"
Logger "-------------------------------------------------------------" "NOTICE"
Logger " Sync task [ $SYNC_ID ] launched as $LOCAL_USER @ $LOCAL_HOST (PID $SCRIPT_PID ) " "NOTICE"
2015-09-08 12:04:48 +00:00
if [ $no_maxtime -eq 1 ] ; then
2014-03-09 16:54:45 +00:00
SOFT_MAX_EXEC_TIME = 0
HARD_MAX_EXEC_TIME = 0
fi
2015-09-10 15:48:57 +00:00
CheckReplicaPaths
2015-09-10 19:42:11 +00:00
CheckDiskSpace
RunBeforeHook
Main
2015-09-08 12:04:48 +00:00
if [ $? = = 0 ] ; then
2015-09-10 19:42:11 +00:00
SoftDelete
2013-06-18 11:34:14 +00:00
fi
2015-09-10 19:42:11 +00:00
RunAfterHook
2013-06-18 11:34:14 +00:00
fi
2013-07-15 22:10:23 +00:00
else
2015-09-08 14:08:14 +00:00
Logger "Environment not suitable to run osync." "CRITICAL"
2013-10-10 18:17:40 +00:00
exit 1
2013-07-15 22:10:23 +00:00
fi