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 E660B138ACE for ; Tue, 2 Dec 2014 14:19:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD91BE096B; Tue, 2 Dec 2014 14:19:08 +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 2DBF7E096B for ; Tue, 2 Dec 2014 14:19:07 +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 0EDE2340609 for ; Tue, 2 Dec 2014 14:19:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 833ACB5C1 for ; Tue, 2 Dec 2014 14:19:05 +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: <1417529815.d47a85f8cabba8dbde87875d61a500a55bbd663e.perfinion@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:userroles commit in: policy/modules/roles/ X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: policy/modules/roles/staff.te policy/modules/roles/unprivuser.te X-VCS-Directories: policy/modules/roles/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: d47a85f8cabba8dbde87875d61a500a55bbd663e X-VCS-Branch: userroles Date: Tue, 2 Dec 2014 14:19:05 +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: e1755db1-bcae-48b6-86c8-52f66a2f3e46 X-Archives-Hash: 5f295485c9a0b786035496586811c4ee commit: d47a85f8cabba8dbde87875d61a500a55bbd663e Author: Jason Zaman perfinion com> AuthorDate: Tue Dec 2 11:14:38 2014 +0000 Commit: Jason Zaman perfinion com> CommitDate: Tue Dec 2 14:16:55 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=d47a85f8 Add missing roles interfaces Some interfaces were missing from staff_r and user_r, this adds them in --- policy/modules/roles/staff.te | 16 ++++++++++++++++ policy/modules/roles/unprivuser.te | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/policy/modules/roles/staff.te b/policy/modules/roles/staff.te index 1d4b3e0..1a867f0 100644 --- a/policy/modules/roles/staff.te +++ b/policy/modules/roles/staff.te @@ -188,6 +188,14 @@ ifndef(`distro_redhat',` ifdef(`distro_gentoo',` optional_policy(` + android_role(staff_r, staff_t) + ') + + optional_policy(` + at_role(staff_r, staff_t) + ') + + optional_policy(` chromium_role(staff_r, staff_t) ') @@ -230,4 +238,12 @@ ifdef(`distro_gentoo',` optional_policy(` skype_role(staff_r, staff_t) ') + + optional_policy(` + wine_role(staff_r, staff_t) + ') + + optional_policy(` + xscreensaver_role(staff_r, staff_t) + ') ') diff --git a/policy/modules/roles/unprivuser.te b/policy/modules/roles/unprivuser.te index c171833..e349a03 100644 --- a/policy/modules/roles/unprivuser.te +++ b/policy/modules/roles/unprivuser.te @@ -173,6 +173,14 @@ ifndef(`distro_redhat',` ifdef(`distro_gentoo',` optional_policy(` + android_role(user_r, user_t) + ') + + optional_policy(` + at_role(user_r, user_t) + ') + + optional_policy(` chromium_role(user_r, user_t) ') @@ -211,4 +219,12 @@ ifdef(`distro_gentoo',` optional_policy(` skype_role(user_r, user_t) ') + + optional_policy(` + wine_role(user_r, user_t) + ') + + optional_policy(` + xscreensaver_role(user_r, user_t) + ') ')