From: Elijah Saxon Date: Wed, 27 Jul 2005 17:30:56 +0000 (+0000) Subject: fixed when bug for real this time. X-Git-Tag: backupninja-0.7 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=b5120bcd7b12047e802a8067f2275f0d3d2ebeba fixed when bug for real this time. --- 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"