diff options
author | intrigeri <intrigeri@boum.org> | 2008-07-28 17:12:31 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2008-07-28 17:12:31 +0000 |
commit | c4f2b1d45ecbd76342d124768b09f9f26a3b6770 (patch) | |
tree | 4c0187ab6f0e0a7d24fde4a56ff8882c81cc220d | |
parent | 351369b874f32e2371e083f3a17abae45729af79 (diff) | |
download | backupninja-c4f2b1d45ecbd76342d124768b09f9f26a3b6770.tar.gz backupninja-c4f2b1d45ecbd76342d124768b09f9f26a3b6770.tar.bz2 |
fix reportspace
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | src/backupninja.in | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -27,3 +27,4 @@ Matthew Palmer -- mysql enhancements romain.tartiere@healthgrid.org -- ldap fixes Adam Monsen - spec file updates Matthew Palmer <mpalmer@debian.org> -- halt loglevel feature +dan@garthwaite.org -- reportspace bugfix @@ -1,3 +1,7 @@ +version 0.9.7 -- UNRELEASED + backupninja changes + . fix bug in reportspace, thanks Dan Garthwaite + version 0.9.6 -- July 21, 2008 backupninja changes . fix bug in cstream definition, thanks Jamie McClelland diff --git a/src/backupninja.in b/src/backupninja.in index 47630f2..25f4e11 100755 --- a/src/backupninja.in +++ b/src/backupninja.in @@ -561,7 +561,7 @@ if [ $doit == 1 ]; then previous="" for i in $(ls "$configdirectory"); do backuploc=$(grep ^directory "$configdirectory"/"$i" | @AWK@ '{print $3}') - if [ "$backuploc" != "$previous" ]; then + if [ "$backuploc" != "$previous" -a -n "$backuploc" ]; then df -h "$backuploc" previous="$backuploc" fi |