diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2004-07-02 23:45:39 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2004-07-02 23:45:39 +0000 |
commit | 7e1e97e3a2755c361b272714033d1687944ad91f (patch) | |
tree | 5cb7c3405100c5ffde70eabdd623cf89dfc371b0 /sec-policy | |
parent | mask selinux-base-policy-20040702 (diff) | |
download | gentoo-2-7e1e97e3a2755c361b272714033d1687944ad91f.tar.gz gentoo-2-7e1e97e3a2755c361b272714033d1687944ad91f.tar.bz2 gentoo-2-7e1e97e3a2755c361b272714033d1687944ad91f.zip |
updated flask headers
Diffstat (limited to 'sec-policy')
3 files changed, 98 insertions, 1 deletions
diff --git a/sec-policy/selinux-base-policy/ChangeLog b/sec-policy/selinux-base-policy/ChangeLog index 06960dffbb54..0b065a8ce522 100644 --- a/sec-policy/selinux-base-policy/ChangeLog +++ b/sec-policy/selinux-base-policy/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sec-policy/selinux-base-policy # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sec-policy/selinux-base-policy/ChangeLog,v 1.27 2004/06/30 00:28:52 pebenito Exp $ +# $Header: /var/cvsroot/gentoo-x86/sec-policy/selinux-base-policy/ChangeLog,v 1.28 2004/07/02 23:45:39 pebenito Exp $ + +*selinux-base-policy-20040702 (02 Jul 2004) + + 02 Jul 2004; Chris PeBenito <pebenito@gentoo.org> + +selinux-base-policy-20040702.ebuild: + Same as 20040629, except with updated flask headers, which will come out in + 2.6.8. *selinux-base-policy-20040629 (29 Jun 2004) diff --git a/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20040702 b/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20040702 new file mode 100644 index 000000000000..073fc386947a --- /dev/null +++ b/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20040702 @@ -0,0 +1 @@ +MD5 9d7d602491eda3f344b9b948f28e0f39 selinux-base-policy-20040702.tar.bz2 69967 diff --git a/sec-policy/selinux-base-policy/selinux-base-policy-20040702.ebuild b/sec-policy/selinux-base-policy/selinux-base-policy-20040702.ebuild new file mode 100644 index 000000000000..e376cb88ec0c --- /dev/null +++ b/sec-policy/selinux-base-policy/selinux-base-policy-20040702.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2004 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-20040702.ebuild,v 1.1 2004/07/02 23:45:39 pebenito Exp $ + +IUSE="build" + +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" +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" + +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 + 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." + + echo -ne "\a" ; sleep 0.1 ; echo -ne "\a" ; sleep 1 + echo -ne "\a" ; sleep 0.1 ; echo -ne "\a" ; sleep 1 + echo -ne "\a" ; sleep 0.1 ; echo -ne "\a" ; sleep 1 + echo -ne "\a" ; sleep 0.1 ; echo -ne "\a" ; sleep 1 + echo -ne "\a" ; sleep 0.1 ; echo -ne "\a" ; sleep 1 + echo -ne "\a" ; sleep 0.1 ; echo -ne "\a" ; sleep 1 + echo -ne "\a" ; sleep 0.1 ; echo -ne "\a" ; sleep 1 + echo -ne "\a" ; sleep 0.1 ; echo -ne "\a" ; sleep 1 + sleep 4 +} |