diff options
author | Elijah Saxon <elijah@riseup.net> | 2005-07-27 17:30:56 +0000 |
---|---|---|
committer | Elijah Saxon <elijah@riseup.net> | 2005-07-27 17:30:56 +0000 |
commit | b5120bcd7b12047e802a8067f2275f0d3d2ebeba (patch) | |
tree | a655bb0829241f941a564cf86078678abe790d06 | |
parent | a37e9ccdb9453185765c59dafa808c47a098e75a (diff) | |
download | backupninja-b5120bcd7b12047e802a8067f2275f0d3d2ebeba.tar.gz backupninja-b5120bcd7b12047e802a8067f2275f0d3d2ebeba.tar.bz2 |
fixed when bug for real this time.
-rwxr-xr-x | backupninja | 3 |
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" |