summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-01-14 03:56:53 +0000
committerZac Medico <zmedico@gentoo.org>2009-01-14 03:56:53 +0000
commit82001426fe423b57f709c418c8e03d1fdce8e1b1 (patch)
tree44874345cde4bfafec9bb8f1fd7a5257b1212559 /pym/_emerge
parentc25c3d3752eb825387662f87331dafdabc547011 (diff)
downloadportage-82001426fe423b57f709c418c8e03d1fdce8e1b1.tar.gz
portage-82001426fe423b57f709c418c8e03d1fdce8e1b1.tar.bz2
portage-82001426fe423b57f709c418c8e03d1fdce8e1b1.zip
Use a new 'usersync' feature to control dropping of privileges for --sync,
since it's fairly common for people to have inconsistent permissions between $PORTDIR and contained files/directories. (trunk r12496) svn path=/main/branches/2.1.6/; revision=12506
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index 130bf7ecf..48a1e911a 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -11892,7 +11892,8 @@ def action_sync(settings, trees, mtimedb, myopts, myaction):
spawn_kwargs = {}
spawn_kwargs["env"] = settings.environ()
- if portage.data.secpass >= 2 and \
+ if 'usersync' in settings.features and \
+ portage.data.secpass >= 2 and \
(st.st_uid != os.getuid() and st.st_mode & 0700 or \
st.st_gid != os.getgid() and st.st_mode & 0070):
try: