Commit 60e8c8c0 authored by bescoto's avatar bescoto

Added gid to process_groups


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@530 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 5da414a6
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment