summaryrefslogtreecommitdiff
path: root/sys-kernel/dracut-config-redcore/dracut-config-redcore-1337.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'sys-kernel/dracut-config-redcore/dracut-config-redcore-1337.ebuild')
-rw-r--r--sys-kernel/dracut-config-redcore/dracut-config-redcore-1337.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/sys-kernel/dracut-config-redcore/dracut-config-redcore-1337.ebuild b/sys-kernel/dracut-config-redcore/dracut-config-redcore-1337.ebuild
deleted file mode 100644
index 727dddb2..00000000
--- a/sys-kernel/dracut-config-redcore/dracut-config-redcore-1337.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-DESCRIPTION="Redcore Linux Dracut configuration files"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="sys-boot/grub"
-
-S="${FILESDIR}"
-
-pkg_preinst() {
- # Backup Dracut configuration file
- if [[ -f ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf" ]]; then
- cp -avx ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf" ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup"
- fi
-}
-
-src_install() {
- # if we overwrite /etc/dracut.conf.d/redcore-dracut.conf we may break users setup
- # so install the new Dracut configuration file as example only
- dodir "etc/dracut.conf.d" || die
- insinto "etc/dracut.conf.d" || die
- newins redcore-dracut.conf redcore-dracut.conf.example || die
-}
-
-pkg_postinst() {
- # Restore Dracut configuration file
- if [[ -f ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup" ]]; then
- cp -avx ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup" ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf"
- fi
-}