From: hackbard Date: Thu, 24 Mar 2016 11:51:53 +0000 (+0100) Subject: more verbose output in case of errors X-Git-Url: https://hackdaworld.org/gitweb/?p=outofuni%2Fbackup.git;a=commitdiff_plain;h=8f054797a11631cf2973d397c3a4449abd8e72a9 more verbose output in case of errors --- diff --git a/bin/backup b/bin/backup index cd96256..b29d2b7 100755 --- a/bin/backup +++ b/bin/backup @@ -161,11 +161,13 @@ if [ ! -f $backupdir/.$today ]; then rsync=(rsync -aR -e "ssh -c $ciph" $rcomp --delete) rsync+=($rbw $user@$remote$rsrc $cbd) fi - "${rsync[@]}" + res=`"${rsync[@]}" 2>&1` ret=$? if [ "$ret" != "0" ]; then log backup terminated before completion ... + log reason: + log $res exit -50 fi