From a70338da115e109a8ec34b7a8070f08d43945b93 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 24 Jun 2007 09:44:08 +0000 Subject: Allow sync for unpriviledges users if they have write access to $PORTDIR (bug #182786, trunk r6973) svn path=/main/branches/2.1.2/; revision=6991 --- bin/emerge | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/emerge') diff --git a/bin/emerge b/bin/emerge index 3d6e9e245..2502387d2 100755 --- a/bin/emerge +++ b/bin/emerge @@ -5472,12 +5472,12 @@ def emerge_main(): # check if root user is the current user for the actions where emerge needs this if portage.secpass < 2: # We've already allowed "--version" and "--help" above. - if "--pretend" not in myopts and \ - myaction not in ("search","info"): + if "--pretend" not in myopts and myaction not in ("search","info"): need_superuser = not \ ("--fetchonly" in myopts or \ "--fetch-all-uri" in myopts or \ - myaction in ("metadata", "regen")) + myaction in ("metadata", "regen") or \ + (myaction == "sync" and os.access(settings["PORTDIR"], os.W_OK)) if portage.secpass < 1 or \ need_superuser: if need_superuser: -- cgit v1.2.3-1-g7c22