diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2005-08-21 19:26:43 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2005-08-21 19:26:43 +0000 |
commit | 29b283322aba4bf02d28cf8213e19ca95926ce6f (patch) | |
tree | c02188ea05a38325e05fb5a04b834e9d4a87ee8c /sec-policy | |
parent | Version bump to 1.4.4. Same deal with the mailer.eclass -r1. Purged older ver... (diff) | |
download | gentoo-2-29b283322aba4bf02d28cf8213e19ca95926ce6f.tar.gz gentoo-2-29b283322aba4bf02d28cf8213e19ca95926ce6f.tar.bz2 gentoo-2-29b283322aba4bf02d28cf8213e19ca95926ce6f.zip |
Minor updates for 2.6.12.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sec-policy')
3 files changed, 102 insertions, 1 deletions
diff --git a/sec-policy/selinux-base-policy/ChangeLog b/sec-policy/selinux-base-policy/ChangeLog index 69017e5259e2..518928398185 100644 --- a/sec-policy/selinux-base-policy/ChangeLog +++ b/sec-policy/selinux-base-policy/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sec-policy/selinux-base-policy # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sec-policy/selinux-base-policy/ChangeLog,v 1.40 2005/06/22 00:00:49 pebenito Exp $ +# $Header: /var/cvsroot/gentoo-x86/sec-policy/selinux-base-policy/ChangeLog,v 1.41 2005/08/21 19:26:43 pebenito Exp $ + +*selinux-base-policy-20050821 (21 Aug 2005) + + 21 Aug 2005; Chris PeBenito <pebenito@gentoo.org> + +selinux-base-policy-20050821.ebuild: + Minor updates for 2.6.12. 21 Jun 2005; Chris PeBenito <pebenito@gentoo.org> selinux-base-policy-20050618.ebuild: diff --git a/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20050821 b/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20050821 new file mode 100644 index 000000000000..7d32a62824f4 --- /dev/null +++ b/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20050821 @@ -0,0 +1 @@ +MD5 a1930fda21f3e8e2b016a7d5334479cb selinux-base-policy-20050821.tar.bz2 78407 diff --git a/sec-policy/selinux-base-policy/selinux-base-policy-20050821.ebuild b/sec-policy/selinux-base-policy/selinux-base-policy-20050821.ebuild new file mode 100644 index 000000000000..61e2463eebbf --- /dev/null +++ b/sec-policy/selinux-base-policy/selinux-base-policy-20050821.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sec-policy/selinux-base-policy/selinux-base-policy-20050821.ebuild,v 1.1 2005/08/21 19:26:43 pebenito Exp $ + +IUSE="build" + +inherit eutils + +DESCRIPTION="Gentoo base policy for SELinux" +HOMEPAGE="http://www.gentoo.org/proj/en/hardened/selinux/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~mips" +#KEYWORDS="x86 ppc sparc amd64 mips" +DEPEND="build? ( sys-devel/make + sys-devel/m4 )" +RDEPEND="sys-devel/m4 + sys-devel/make" + +S=${WORKDIR}/base-policy + +[ -z ${POLICYDIR} ] && POLICYDIR="/etc/security/selinux/src/policy" + +# deprecated policies: +DEPRECATED="domains/program/devfsd.te domains/program/opt.te + file_contexts/program/devfsd.fc file_contexts/program/opt.fc + file_contexts/users.fc domains/program/inetd.te + domains/program/tcpd.te file_contexts/program/inetd.fc + file_contexts/program/tcpd.fc macros/program/ypbind_macros.te" + +src_compile() { + return +} + +src_install() { + if use build; then + # generate a file_contexts + dodir ${POLICYDIR}/file_contexts + einfo "Ignore the checkpolicy error on the next line." + make -C ${S} \ + FC=${D}/${POLICYDIR}/file_contexts/file_contexts \ + ${D}/${POLICYDIR}/file_contexts/file_contexts + + [ ! -f ${D}/${POLICYDIR}/file_contexts/file_contexts ] && \ + die "file_contexts was not generated." + else + # install full policy + dodir /etc/security/selinux/src + + insinto /etc/security + doins ${S}/appconfig/* + + cp -a ${S} ${D}/${POLICYDIR} + rm -fR ${D}/${POLICYDIR}/appconfig + fi +} + +pkg_postinst() { + local isdeprecated + + if ! ( use build || use bootstrap ) + then + ewarn "Removing invalid backup copies of critical config files..." + rm -f ${ROOT}/${POLICYDIR}/._cfg????_users + fi + + echo + einfo "This is the base policy for SELinux on Gentoo. This policy" + einfo "package only covers the applications in the system profile." + einfo "More policy may need to be added according to your requirements." + echo + eerror "It is STRONGLY suggested that you evaluate and merge the" + eerror "policy changes. If any of the file contexts (*.fc) have" + eerror "changed, you should also relabel." + echo + ewarn "Please check the Changelog, there may be important information." + echo + echo + + einfo "Checking for deprecated policy..." + for i in $DEPRECATED; do + if [ -f "${POLICYDIR}/${i}" ]; then + eerror "${POLICYDIR}/${i}" + isdeprecated="y" + fi + done + [ "${isdeprecated}" ] && \ + eerror "The above policy file(s) should be removed if possible." || \ + einfo "None found." + + ebeep 4 + epause 4 +} |