Skip to content
Snippets Groups Projects
Commit b5120bcd authored by elijah's avatar elijah
Browse files

fixed when bug for real this time.

parent a37e9ccd
Branches
Tags
No related merge requests found
...@@ -279,8 +279,10 @@ function process_action() { ...@@ -279,8 +279,10 @@ function process_action() {
getconf when "$defaultwhen" getconf when "$defaultwhen"
if [ "$processnow" == 1 ]; then if [ "$processnow" == 1 ]; then
info ">>>> starting action $file (because of --now)" info ">>>> starting action $file (because of --now)"
run="yes"
elif [ "$when" == "hourly" ]; then elif [ "$when" == "hourly" ]; then
info ">>>> starting action $file (because 'when = hourly')" info ">>>> starting action $file (because 'when = hourly')"
run="yes"
else else
IFS=$'\t\n' IFS=$'\t\n'
for w in $when; do for w in $when; do
...@@ -297,6 +299,7 @@ function process_action() { ...@@ -297,6 +299,7 @@ function process_action() {
done done
IFS=$' \t\n' IFS=$' \t\n'
fi fi
debug $run
[ "$run" == "no" ] && return [ "$run" == "no" ] && return
let "actions_run += 1" let "actions_run += 1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment