summarylogtreecommitdiffstats
path: root/grub-git.install
diff options
context:
space:
mode:
Diffstat (limited to 'grub-git.install')
-rw-r--r--grub-git.install17
1 files changed, 0 insertions, 17 deletions
diff --git a/grub-git.install b/grub-git.install
deleted file mode 100644
index c13ef99c77c5..000000000000
--- a/grub-git.install
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-post_upgrade() {
- # We used to package /boot/grub/grub.cfg, but there is no reason to.
- # Remove the file from package, but move real file back in place.
- if [ ! -f /boot/grub/grub.cfg -a -f /boot/grub/grub.cfg.pacsave ]; then
- mv /boot/grub/grub.cfg.pacsave /boot/grub/grub.cfg
- fi
-}
-
-post_install() {
- cat << 'EOM'
-Generate your bootloader configuration with:
- grub-mkconfig -o /boot/grub/grub.cfg
-EOM
-}
-