aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElijah Saxon <elijah@riseup.net>2005-07-27 17:30:56 +0000
committerElijah Saxon <elijah@riseup.net>2005-07-27 17:30:56 +0000
commitb5120bcd7b12047e802a8067f2275f0d3d2ebeba (patch)
treea655bb0829241f941a564cf86078678abe790d06
parenta37e9ccdb9453185765c59dafa808c47a098e75a (diff)
downloadbackupninja-b5120bcd7b12047e802a8067f2275f0d3d2ebeba.tar.gz
backupninja-b5120bcd7b12047e802a8067f2275f0d3d2ebeba.tar.bz2
fixed when bug for real this time.
-rwxr-xr-xbackupninja3
1 files changed, 3 insertions, 0 deletions
diff --git a/backupninja b/backupninja
index aba997e..7bd3541 100755
--- a/backupninja
+++ b/backupninja
@@ -279,8 +279,10 @@ function process_action() {
getconf when "$defaultwhen"
if [ "$processnow" == 1 ]; then
info ">>>> starting action $file (because of --now)"
+ run="yes"
elif [ "$when" == "hourly" ]; then
info ">>>> starting action $file (because 'when = hourly')"
+ run="yes"
else
IFS=$'\t\n'
for w in $when; do
@@ -297,6 +299,7 @@ function process_action() {
done
IFS=$' \t\n'
fi
+ debug $run
[ "$run" == "no" ] && return
let "actions_run += 1"