diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | handlers/rdiff.in | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -12,6 +12,8 @@ version 1.0 -- UNRELEASED . Don't attempt to dump performance_schema database (Redmine#3741). pgsql: . Don't produce empty uncompressed backups (Redmine#3820). + rdiff-backup: + . Use fatal function to report failure of rdiff-backup jobs as such. rysnc: . Fix numericids option (Redmine#3691). . Mangle $rsync_options just afterwards (Redmine#3702). diff --git a/handlers/rdiff.in b/handlers/rdiff.in index c2f5aa0..c3c8d1d 100644 --- a/handlers/rdiff.in +++ b/handlers/rdiff.in @@ -271,8 +271,8 @@ if [ $test = 0 ]; then debug $output info "Successfully finished backing up source $label" else - warning $output - warning "Failed backup up source $label" + error $output + fatal "Failed backup up source $label" fi fi |