From 608d4d0b0ed98a43c73a090e38fa5d42dd882174 Mon Sep 17 00:00:00 2001
From: Elijah Saxon <elijah@riseup.net>
Date: Fri, 18 Mar 2005 20:22:11 +0000
Subject: [PATCH] unless there is an actual error reported, we now assume
 success.

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

diff --git a/backupninja b/backupninja
index 3cd3cae1..b7d4a149 100755
--- a/backupninja
+++ b/backupninja
@@ -317,10 +317,12 @@ function process_action() {
 	elif [ $_warnings != 0 ]; then
 		msg "*warning* -- $file"
 		errormsg="$errormsg\n== warnings from $file ==\n\n$ret\n"
-	elif [ $retcode == 0 ]; then
-		msg "success -- $file"
 	else
-		msg "unknown -- $file"
+		msg "success -- $file"
+#	elif [ $retcode == 0 ]; then
+#		msg "success -- $file"
+#	else
+#		msg "unknown -- $file"
 	fi
 
 	let "fatals += _fatals"
-- 
GitLab