From: elijah Date: Wed, 27 Jul 2005 17:30:56 +0000 (+0000) Subject: fixed when bug for real this time. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=7bd12916089df27899ce48006e7e8a72e8967d8e;p=matthijs%2Fupstream%2Fbackupninja-vserver.git fixed when bug for real this time. git-svn-id: http://code.autistici.org/svn/backupninja/trunk@155 758a04ac-41e6-0310-8a23-8373a73cc35d --- 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"