diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2004-09-13 03:25:42 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2004-09-13 03:25:42 +0000 |
commit | f594487227a2d800df8b562dcf12507aee2f38c8 (patch) | |
tree | 068db4c04351bfb701ebcff124f9778a7125991d /sec-policy/selinux-base-policy | |
parent | rm old (diff) | |
download | historical-f594487227a2d800df8b562dcf12507aee2f38c8.tar.gz historical-f594487227a2d800df8b562dcf12507aee2f38c8.tar.bz2 historical-f594487227a2d800df8b562dcf12507aee2f38c8.zip |
rm old
Diffstat (limited to 'sec-policy/selinux-base-policy')
3 files changed, 3 insertions, 71 deletions
diff --git a/sec-policy/selinux-base-policy/Manifest b/sec-policy/selinux-base-policy/Manifest index dbb4ca716afc..d37f528a2745 100644 --- a/sec-policy/selinux-base-policy/Manifest +++ b/sec-policy/selinux-base-policy/Manifest @@ -3,18 +3,16 @@ Hash: SHA1 MD5 45160e9a01a18ce2fdc072f0c8e1405e ChangeLog 8815 MD5 808b5f7f5d6654666e9193672d463229 metadata.xml 473 -MD5 f4f60b17659a9d7e23209fbd4149f541 selinux-base-policy-20040225.ebuild 1803 MD5 c6093a25f1662f9c9938956bcde5dd1d selinux-base-policy-20040629.ebuild 2275 MD5 c95d853ea9fdf166ae11ace4726e8123 selinux-base-policy-20040702.ebuild 2275 MD5 781011f9fe69880969f3af306b957ff5 selinux-base-policy-20040906.ebuild 2278 -MD5 7afea4eea1a3c5611ca773551fbd1bb5 files/digest-selinux-base-policy-20040225 80 MD5 b04dbcde2eb7e0f4177e3076075fe6ca files/digest-selinux-base-policy-20040629 80 MD5 aa75977434391487a1fe3dfe2394157d files/digest-selinux-base-policy-20040702 80 MD5 9ca92516b64d82899ea8fd92f15af3da files/digest-selinux-base-policy-20040906 80 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (GNU/Linux) -iD8DBQFBPNYkGFJQsIJWJy4RAlpoAJ9x6Kc6W2cEXFgi+bi/QHrKCnmemACfY1Cf -a4mrVZIORcvJu3HFz9kjNZ8= -=te7H +iD8DBQFBRRNQGFJQsIJWJy4RAg3iAJ9QWXqEN38TjmOlZjdRy4w0tS9BsQCdEbFi +MtLxXm4BRAu3jyz5pB85y/M= +=9lxD -----END PGP SIGNATURE----- diff --git a/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20040225 b/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20040225 deleted file mode 100644 index 2941a8cf81fc..000000000000 --- a/sec-policy/selinux-base-policy/files/digest-selinux-base-policy-20040225 +++ /dev/null @@ -1 +0,0 @@ -MD5 860f28c0b67ede1fb0a245f035faa608 selinux-base-policy-20040225.tar.bz2 61163 diff --git a/sec-policy/selinux-base-policy/selinux-base-policy-20040225.ebuild b/sec-policy/selinux-base-policy/selinux-base-policy-20040225.ebuild deleted file mode 100644 index d18be9748fa8..000000000000 --- a/sec-policy/selinux-base-policy/selinux-base-policy-20040225.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# 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-20040225.ebuild,v 1.7 2004/09/06 01:13:57 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" -DEPEND="build? ( sys-devel/make )" -RDEPEND="sys-devel/m4 - sys-devel/make - !build? ( >=sys-libs/pam-0.77 )" - -S=${WORKDIR}/base-policy - -[ -z ${POLICYDIR} ] && POLICYDIR="/etc/security/selinux/src/policy" - -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() { - 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 - ebeep 4 - epause 4 -} |