aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-09-20 15:32:08 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-09-20 15:32:08 +0000
commit4088f1c0ca035609c37c36083accaaeed03b589b (patch)
tree5f3bea3254be4215bd59122cbb0a3caeed33e273
parentc2555e48a1b82486be7fe7a080403facf7024fdb (diff)
downloadslackbuilds-4088f1c0ca035609c37c36083accaaeed03b589b.tar.gz
slackbuilds-4088f1c0ca035609c37c36083accaaeed03b589b.tar.bz2
backupninja: rub handler update
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@251 370017ae-e619-0410-ac65-c121f96126d4
-rwxr-xr-xbackupninja/backupninja.SlackBuild2
-rw-r--r--backupninja/rub6
2 files changed, 5 insertions, 3 deletions
diff --git a/backupninja/backupninja.SlackBuild b/backupninja/backupninja.SlackBuild
index ac7cdbbf..bfb7f804 100755
--- a/backupninja/backupninja.SlackBuild
+++ b/backupninja/backupninja.SlackBuild
@@ -18,7 +18,7 @@ fi
PACKAGE="backupninja"
ARCH="noarch"
VERSION=${VERSION:=0.9.3}
-BUILD=${BUILD:=1rha}
+BUILD=${BUILD:=2rha}
SRC_DIR=${SRC:=$CWD}
TMP=${TMP:=/tmp}
REPOS=${REPOS:=$TMP}
diff --git a/backupninja/rub b/backupninja/rub
index efdfa171..6918ef8d 100644
--- a/backupninja/rub
+++ b/backupninja/rub
@@ -140,18 +140,20 @@ for SECTION in $include; do
info "Syncing $SECTION on $backupdir/$SECTION/$section.0..."
if [ "$from" == "local" ]; then
+ debug $rsync $EXCLUDES /$SECTION/ $backupdir/$SECTION/$section.0/
$rsync $EXCLUDES /$SECTION/ $backupdir/$SECTION/$section.0/ >> $log
if [ "$?" != "0" ]; then
- error "Rsync error when trying to transfer $SECTION"
+ warning "Rsync error when trying to transfer $SECTION"
fi
elif [ "$from" == "remote" ]; then
if [ -z "$user" ] || [ -z "$host" ]; then
error "Config file error: either user or host was not specified"
exit 1
else
+ debug $rsync $EXCLUDES -e "$ssh" $user@$host:/$SECTION/ $backupdir/$SECTION/$section.0
$rsync $EXCLUDES -e "$ssh" $user@$host:/$SECTION/ $backupdir/$SECTION/$section.0 >> $log
if [ "$?" != "0" ]; then
- error "Rsync error when trying to transfer $SECTION"
+ warning "Rsync error when trying to transfer $SECTION"
fi
fi
else