summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rdiff-backup/CHANGELOG3
-rw-r--r--rdiff-backup/rdiff_backup/Main.py7
2 files changed, 8 insertions, 2 deletions
diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG
index 032dfe3..559aa80 100644
--- a/rdiff-backup/CHANGELOG
+++ b/rdiff-backup/CHANGELOG
@@ -1,7 +1,8 @@
New in v1.3.2 (????/??/??)
---------------------------
-
+Improve error message if regress operation fails due to Security Violation.
+Thanks to Grzegorz Marszalek for the bug report. (Andrew Ferguson)
New in v1.3.1 (2009/01/27)
diff --git a/rdiff-backup/rdiff_backup/Main.py b/rdiff-backup/rdiff_backup/Main.py
index c697542..62aae83 100644
--- a/rdiff-backup/rdiff_backup/Main.py
+++ b/rdiff-backup/rdiff_backup/Main.py
@@ -919,4 +919,9 @@ def checkdest_if_necessary(dest_rp):
if need_check == 1:
Log("Previous backup seems to have failed, regressing "
"destination now.", 2)
- dest_rp.conn.regress.Regress(dest_rp)
+ try:
+ dest_rp.conn.regress.Regress(dest_rp)
+ except Security.Violation:
+ Log.FatalError("Security violation while attempting to regress "
+ "destination, perhaps due to --restrict-read-only "
+ "or --restrict-update-only.")