summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-05-18 16:26:15 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-05-18 16:26:15 +0000
commit63bfffff292157b23930eab3f387afe815a8a023 (patch)
tree23e6879d5679c1b423b171a79a0a52aa06ffa486
parentb0c898f70573bfc982ebf6caa9af892182df5080 (diff)
downloadrdiff-backup-63bfffff292157b23930eab3f387afe815a8a023.tar.gz
Added gid to process_groups
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@530 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/rdiff_backup/Globals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py
index 3c8584a..f14058f 100644
--- a/rdiff-backup/rdiff_backup/Globals.py
+++ b/rdiff-backup/rdiff_backup/Globals.py
@@ -49,7 +49,7 @@ server = None
# vary depending on the connection.
process_uid = os.getuid()
process_gid = os.getgid()
-process_groups = os.getgroups()
+process_groups = [process_gid] + os.getgroups()
# If true, when copying attributes, also change target's uid/gid
change_ownership = None