From 846213cfa48e026bdd7cacaebd46973207a809ba Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Fri, 12 Oct 2007 17:42:46 +0000
Subject: [PATCH] Fixed reportspace option (Trac#10)

---
 ChangeLog          | 1 +
 src/backupninja.in | 5 ++---
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 62df6f86..ea8d6c47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@ version 0.9.5 -- unreleased
 	 . Enhanced portability for other platforms
 	 . Fixed Trac#11 (quoting needed to prevent shell expansion, broke the
            toint function sometimes)
+	 . Fixed reportspace option (Trac#10)
     handler changes
         ldap:
 	 . Fixed shell command quoting issues, missing 'then' clauses, cleaned up
diff --git a/src/backupninja.in b/src/backupninja.in
index 0cd186ac..34c0bd61 100755
--- a/src/backupninja.in
+++ b/src/backupninja.in
@@ -546,10 +546,9 @@ if [ $doit == 1 ]; then
 			for i in $(ls "$configdirectory"); do
 			backuploc=$(grep ^directory "$configdirectory"/"$i" | @AWK@ '{print $3}')
 			if [ "$backuploc" != "$previous" ]; then
-				mountdev=$(mount | grep "$backuploc" | @AWK@ '{print $1}')
-				df -h "$mountdev"
+				df -h "$backuploc"
 				previous="$backuploc"
-				fi
+			fi
 			done
 		fi
 	} | mail -s "backupninja: $hostname $subject" $reportemail
-- 
GitLab