summaryrefslogtreecommitdiffstats
path: root/bin/portageq
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-03-28 11:50:48 +0000
committerZac Medico <zmedico@gentoo.org>2008-03-28 11:50:48 +0000
commit99906eb21a7b93836a0bef58862df128dbaf92b0 (patch)
treeb19550cc0afda9d90988221e3024e6f6a4dc5b86 /bin/portageq
parent9f538c3be23771c00c1be764173a069d652e63c6 (diff)
downloadportage-99906eb21a7b93836a0bef58862df128dbaf92b0.tar.gz
portage-99906eb21a7b93836a0bef58862df128dbaf92b0.tar.bz2
portage-99906eb21a7b93836a0bef58862df128dbaf92b0.zip
Use os.environ["SANDBOX_ON"] = "0" to make portageq exempt from sandbox for
things like writing metadata cache. Thanks to ferringb for the suggestion. (trunk r9448) svn path=/main/branches/2.1.2/; revision=9550
Diffstat (limited to 'bin/portageq')
-rwxr-xr-xbin/portageq4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/portageq b/bin/portageq
index d65abaa8f..f0c2e19e2 100755
--- a/bin/portageq
+++ b/bin/portageq
@@ -21,6 +21,10 @@ except KeyboardInterrupt:
import os
+# This allows portageq to be exempt from sandbox,
+# for things like updating metadata cache.
+os.environ["SANDBOX_ON"] = "0"
+
import types
import portage_exception
#-----------------------------------------------------------------------------