From f8698a457a75d4cfc7a8cc71d7ad1c98d3c60bbc Mon Sep 17 00:00:00 2001 From: Jason Zaman Date: Sun, 4 Feb 2018 21:59:24 +0800 Subject: sec-policy/selinux-base-policy: postinst should not die postinst is not allowed to die and it breaks catalyst stage building. commit f03eee7017c288deabdfc593079397d480ea473a fixed this for some versions, this fixes all the other ebuilds too that were missed. Package-Manager: Portage-2.3.19, Repoman-2.3.6 --- .../selinux-base-policy/selinux-base-policy-2.20170204-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sec-policy/selinux-base-policy/selinux-base-policy-2.20170204-r2.ebuild') diff --git a/sec-policy/selinux-base-policy/selinux-base-policy-2.20170204-r2.ebuild b/sec-policy/selinux-base-policy/selinux-base-policy-2.20170204-r2.ebuild index dfe1dece31a5..5627947be22d 100644 --- a/sec-policy/selinux-base-policy/selinux-base-policy-2.20170204-r2.ebuild +++ b/sec-policy/selinux-base-policy/selinux-base-policy-2.20170204-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -104,9 +104,9 @@ pkg_postinst() { for i in ${POLICY_TYPES}; do einfo "Inserting the following modules, with base, into the $i module store: ${MODS}" - cd /usr/share/selinux/${i} || die "Could not enter /usr/share/selinux/${i}" + cd /usr/share/selinux/${i} - semodule -s ${i} ${COMMAND} || die "Failed to load in base and modules ${MODS} in the $i policy store" + semodule -s ${i} ${COMMAND} done # Relabel depending packages -- cgit v1.2.3-65-gdbad