diff options
author | intrigeri <intrigeri@boum.org> | 2013-06-08 08:58:49 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2013-06-08 08:59:03 +0200 |
commit | 1c6677ebddff17f5efdaddebf19a89ec15d58b3d (patch) | |
tree | 0c877c7205d11c81f9dbe651e314408a259cb27d /handlers | |
parent | 0dbac2a1c1f4a8d6ce6c23c2dde52a174e5b4661 (diff) | |
download | backupninja-1c6677ebddff17f5efdaddebf19a89ec15d58b3d.tar.gz backupninja-1c6677ebddff17f5efdaddebf19a89ec15d58b3d.tar.bz2 |
Add option to include rdiff-backup output in reports.
Thanks to David Gasaway <dave@gasaway.org> for the patch.
Diffstat (limited to 'handlers')
-rw-r--r-- | handlers/rdiff.in | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/handlers/rdiff.in b/handlers/rdiff.in index c3c8d1d..471a3d7 100644 --- a/handlers/rdiff.in +++ b/handlers/rdiff.in @@ -85,6 +85,7 @@ getconf testconnect yes getconf nicelevel 0 getconf bwlimit getconf ignore_version no +getconf output_as_info no setsection source getconf type; sourcetype=$type @@ -182,7 +183,11 @@ if [ "$keep" != yes ]; then if [ $test = 0 ]; then output="`su -c "$removestr" 2>&1`" if [ $? = 0 ]; then - debug $output + if [ "$output_as_info" == "yes" ]; then + info $output + else + debug $output + fi info "Removing backups older than $keep days succeeded." else warning $output @@ -268,7 +273,11 @@ debug "$execstr" if [ $test = 0 ]; then output=`nice -n $nicelevel su -c "$execstr" 2>&1` if [ $? = 0 ]; then - debug $output + if [ "$output_as_info" == "yes" ]; then + info $output + else + debug $output + fi info "Successfully finished backing up source $label" else error $output |