From b5120bcd7b12047e802a8067f2275f0d3d2ebeba Mon Sep 17 00:00:00 2001
From: Elijah Saxon <elijah@riseup.net>
Date: Wed, 27 Jul 2005 17:30:56 +0000
Subject: [PATCH] fixed when bug for real this time.

---
 backupninja | 3 +++
 1 file changed, 3 insertions(+)

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