diff options
author | Ned Ludd <solar@gentoo.org> | 2005-04-05 22:48:09 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2005-04-05 22:48:09 +0000 |
commit | eb2a0eb29af1a040d471ec20b0118035099ae5cd (patch) | |
tree | 203a1096625f52cfb6a8aa0ee525a6fe85430756 /profiles | |
parent | Add support for hardened-specified config file (diff) | |
download | gentoo-2-eb2a0eb29af1a040d471ec20b0118035099ae5cd.tar.gz gentoo-2-eb2a0eb29af1a040d471ec20b0118035099ae5cd.tar.bz2 gentoo-2-eb2a0eb29af1a040d471ec20b0118035099ae5cd.zip |
- yank profile.bashrc. maintainer is taking changes :)
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/hardened/profile.bashrc | 27 |
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 |