summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Ludd <solar@gentoo.org>2005-04-05 22:48:09 +0000
committerNed Ludd <solar@gentoo.org>2005-04-05 22:48:09 +0000
commit0971f217acd33560ad583e75741ff2145ae5ccdb (patch)
tree05e364032c51760bf18f0681ec0de865915bd375 /profiles/hardened
parentAdd support for hardened-specified config file (diff)
downloadhistorical-0971f217acd33560ad583e75741ff2145ae5ccdb.tar.gz
historical-0971f217acd33560ad583e75741ff2145ae5ccdb.tar.bz2
historical-0971f217acd33560ad583e75741ff2145ae5ccdb.zip
- yank profile.bashrc. maintainer is taking changes :)
Diffstat (limited to 'profiles/hardened')
-rw-r--r--profiles/hardened/profile.bashrc27
1 files changed, 0 insertions, 27 deletions
diff --git a/profiles/hardened/profile.bashrc b/profiles/hardened/profile.bashrc
deleted file mode 100644
index edb7ed869e12..000000000000
--- a/profiles/hardened/profile.bashrc
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/profile.bashrc,v 1.1 2005/04/05 22:13:35 solar Exp $
-
-case "${EBUILD_PHASE}" in
- install)
- # Our syslog-ng maintainer is not fond of giving users a decent default syslog-ng.conf
- if [[ $PN = "syslog-ng" ]]; then
- newins() {
- if [ -z "${T}" ] || [ -z "${2}" ] ; then
- echo "Error: Nothing defined to do."
- return 1
- fi
- rm -rf "${T}/${2}"
- cp "${1}" "${T}/${2}"
-
- if [[ $1 = "${FILESDIR}/syslog-ng.conf.gentoo" ]] \
- && [ -e "${FILESDIR}/syslog-ng.conf.gentoo.hardened" ]; then
-
- cp "${FILESDIR}/syslog-ng.conf.gentoo.hardened" "${T}/${2}"
- fi
- doins "${T}/${2}"
- }
- fi
- ;;
- *) ;;
-esac