From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0C98D13888F for ; Sat, 17 Oct 2015 17:02:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B73421C0DD; Sat, 17 Oct 2015 17:02:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 17F3021C0D7 for ; Sat, 17 Oct 2015 17:02:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35F3F3408EC for ; Sat, 17 Oct 2015 17:02:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACB8F11B7 for ; Sat, 17 Oct 2015 17:02:03 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1445100470.ef3895b29d224ba5c64e12242b5fb85fc1e9405d.perfinion@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:next commit in: policy/modules/contrib/ X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: policy/modules/contrib/portage.if X-VCS-Directories: policy/modules/contrib/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: ef3895b29d224ba5c64e12242b5fb85fc1e9405d X-VCS-Branch: next Date: Sat, 17 Oct 2015 17:02:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cefeb615-5961-4556-aa30-ec44ccabcd61 X-Archives-Hash: 4edc0f0549efbb03dc4dcb69556c75ea Message-ID: <20151017170203.eOsbg_J99YtUanmfJB3kTY-7_OwtzhS_cUOxdl-7SAM@z> commit: ef3895b29d224ba5c64e12242b5fb85fc1e9405d Author: Luis Ressel aixah de> AuthorDate: Thu Oct 15 10:44:41 2015 +0000 Commit: Jason Zaman gentoo org> CommitDate: Sat Oct 17 16:47:50 2015 +0000 URL: https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=ef3895b2 portage: Fix the gen_require of the portage_compile_domain interface The portage_compile_domain interface used portage_sandbox_t without requiring it. policy/modules/contrib/portage.if | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/policy/modules/contrib/portage.if b/policy/modules/contrib/portage.if index c98a763..4652319 100644 --- a/policy/modules/contrib/portage.if +++ b/policy/modules/contrib/portage.if @@ -68,8 +68,8 @@ interface(`portage_run',` interface(`portage_compile_domain',` gen_require(` class dbus send_msg; - type portage_devpts_t, portage_log_t, portage_srcrepo_t, portage_tmp_t; - type portage_tmpfs_t; + type portage_devpts_t, portage_log_t, portage_sandbox_t, portage_srcrepo_t; + type portage_tmp_t, portage_tmpfs_t; ') allow $1 self:capability { fowner fsetid mknod setgid setuid chown dac_override net_raw };