summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/Main.py
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2003-08-23 23:42:57 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2003-08-23 23:42:57 +0000
commit94da66c4015094e2c5a71e945ef3562644543c0f (patch)
tree9c658f51d1259e0427f131a4b8001b5ebef97eab /rdiff-backup/rdiff_backup/Main.py
parent9c8889d79e47e88564cd636efa050243be69ead5 (diff)
downloadrdiff-backup-94da66c4015094e2c5a71e945ef3562644543c0f.tar.gz
Added tests for and fixed problem with backing up unreadable regular
files as root on source and non-root on dest. git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@399 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/Main.py')
-rw-r--r--rdiff-backup/rdiff_backup/Main.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rdiff-backup/rdiff_backup/Main.py b/rdiff-backup/rdiff_backup/Main.py
index e8167d6..638f137 100644
--- a/rdiff-backup/rdiff_backup/Main.py
+++ b/rdiff-backup/rdiff_backup/Main.py
@@ -423,8 +423,10 @@ def restore_set_fs_globals(target):
target_fsa = fs_abilities.FSAbilities('destination').init_readwrite(
target, 0)
+ Log(str(target_fsa), 3)
mirror_fsa = fs_abilities.FSAbilities('source').init_readwrite(
Globals.rbdir)
+ Log(str(mirror_fsa), 3)
update_bool_global('read_acls', target_fsa.acls)
update_bool_global('write_acls', target_fsa.acls)