summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael E Brown <michael_e_brown@dell.com>2007-10-18 16:49:54 -0500
committerMichael E Brown <michael_e_brown@dell.com>2007-10-18 16:49:54 -0500
commit8be871673b46296b532df02b6e976c61b10fcb41 (patch)
tree8d84d26169dda11a0e6c470742fe8dc935157897 /src
parent0a03b7eabd34ebff49d28124cb61d52b5230d140 (diff)
downloadmock-8be871673b46296b532df02b6e976c61b10fcb41.tar.gz
mock-8be871673b46296b532df02b6e976c61b10fcb41.tar.xz
mock-8be871673b46296b532df02b6e976c61b10fcb41.zip
don't overwrite gid or we end up with unwriteable dirs in buildroot.
Diffstat (limited to 'src')
-rw-r--r--src/py-libs/backend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/py-libs/backend.py b/src/py-libs/backend.py
index 78676d2..ad18754 100644
--- a/src/py-libs/backend.py
+++ b/src/py-libs/backend.py
@@ -132,7 +132,7 @@ class Root(object):
# --> no /etc/yum.conf symlink (F7 and above)
self.root_log.debug("elevating privs")
- self.uidManager.becomeUser(0,0)
+ self.uidManager.becomeUser(0)
# create our base directory heirarchy
mock.util.mkdirIfAbsent(self.basedir)