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 194A21384B4 for ; Wed, 2 Dec 2015 15:45:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B5AFE08E1; Wed, 2 Dec 2015 15:45:26 +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 4D646E08E2 for ; Wed, 2 Dec 2015 15:45:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58366340928 for ; Wed, 2 Dec 2015 15:45:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6681BB5D for ; Wed, 2 Dec 2015 15:45:22 +0000 (UTC) From: "Sven Vermeulen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Vermeulen" Message-ID: <1445100470.ef3895b29d224ba5c64e12242b5fb85fc1e9405d.swift@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:swift 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: swift X-VCS-Committer-Name: Sven Vermeulen X-VCS-Revision: ef3895b29d224ba5c64e12242b5fb85fc1e9405d X-VCS-Branch: swift Date: Wed, 2 Dec 2015 15:45:22 +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: 1edc8bd6-0bdb-499e-8fbc-01805111a662 X-Archives-Hash: 617a46923312ebd8ab9dda07d01844b1 commit: ef3895b29d224ba5c64e12242b5fb85fc1e9405d Author: Luis Ressel aixah de> AuthorDate: Thu Oct 15 10:44:41 2015 +0000 Commit: Sven Vermeulen 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 };