aboutsummaryrefslogtreecommitdiff
path: root/system/grub2/doinst.sh
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2013-09-18 23:50:38 -0500
committerRobby Workman <rworkman@slackbuilds.org>2013-10-29 23:31:40 -0500
commit1cbf184f87c36cecea5a60f6b0665d60fcc23b2b (patch)
treeb0a0f6b9191cf254dc620ab05efcfb5537bc3638 /system/grub2/doinst.sh
parentdb81cc10675c779cbc3136120bfaf201a8bf775a (diff)
system/grub2: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/grub2/doinst.sh')
-rw-r--r--system/grub2/doinst.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/system/grub2/doinst.sh b/system/grub2/doinst.sh
deleted file mode 100644
index 19a6ff6ac8545..0000000000000
--- a/system/grub2/doinst.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-