diff options
Diffstat (limited to 'sys-boot/grub-config-redcore')
-rw-r--r-- | sys-boot/grub-config-redcore/grub-config-redcore-1801.ebuild (renamed from sys-boot/grub-config-redcore/grub-config-redcore-1710.ebuild) | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/sys-boot/grub-config-redcore/grub-config-redcore-1710.ebuild b/sys-boot/grub-config-redcore/grub-config-redcore-1801.ebuild index b40fa95e..baf5cf85 100644 --- a/sys-boot/grub-config-redcore/grub-config-redcore-1710.ebuild +++ b/sys-boot/grub-config-redcore/grub-config-redcore-1801.ebuild @@ -17,20 +17,24 @@ RDEPEND="sys-boot/grub" S="${FILESDIR}" -src_install() { - dodir "/etc/default" || die - insinto "/etc/default" || die - doins -r "${S}/"* || die -} - pkg_preinst() { + # Backup GRUB configuration file if [[ -f ""${ROOT}"etc/default/grub" ]]; then cp -avx ""${ROOT}"etc/default/grub" ""${ROOT}"etc/default/grub.backup" fi } +src_install() { + # if we overwrite /etc/default/grub we may break users setup + # so install the new GRUB configuration file as example only + dodir "etc/default" || die + insinto "etc/default" || die + newins grub grub.example || die +} + pkg_postinst() { - elog "Your previous GRUB configuration was saved as /etc/default/grub.backup" - elog "Please adjust the new configuration to suit you and regenerate the GRUB menu" - elog "by using : /usr/sbin/grub2-mkconfig -o /boot/grub/grub.cfg" + # Restore GRUB configuration file + if [[ -f ""${ROOT}"etc/default/grub.backup" ]]; then + cp -avx ""${ROOT}"etc/default/grub.backup" ""${ROOT}"etc/default/grub" + fi } |