fixed when bug for real this time.

This commit is contained in:
Elijah Saxon 2005-07-27 17:30:56 +00:00
parent a37e9ccdb9
commit b5120bcd7b

View File

@ -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"