From: Zac Medico Date: Fri, 23 Jun 2006 04:35:27 +0000 (-0000) Subject: Prevent an inappropriate warning when a repoman user's profile does not support sandb... X-Git-Tag: v2.1.1~423 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ba30381ef129ae52e17f89a0537b09c48e4905c3;p=portage.git Prevent an inappropriate warning when a repoman user's profile does not support sandbox. Thanks to exg for reporting. svn path=/main/trunk/; revision=3614 --- diff --git a/pym/portage.py b/pym/portage.py index d0cbf70de..8b1c0871c 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1281,8 +1281,15 @@ class config: noiselevel=-1) self.features.remove("gpg") - if not portage_exec.sandbox_capable and ("sandbox" in self.features or "usersandbox" in self.features): - writemsg(red("!!! Problem with sandbox binary. Disabling...\n\n"), + if not portage_exec.sandbox_capable and \ + ("sandbox" in self.features or "usersandbox" in self.features): + if os.environ.get("PORTAGE_CALLER","") == "repoman" and \ + self.profile_path is not None and \ + os.path.realpath(self.profile_path) != \ + os.path.realpath(PROFILE_PATH): + pass # This profile does not belong to the user running repoman. + else: + writemsg(red("!!! Problem with sandbox binary. Disabling...\n\n"), noiselevel=-1) if "sandbox" in self.features: self.features.remove("sandbox")