summaryrefslogtreecommitdiffstats
path: root/system/nvme-cli/doinst.sh
diff options
context:
space:
mode:
author Matteo Bernardini2020-10-26 22:06:13 +0100
committer Matteo Bernardini2020-10-26 22:06:13 +0100
commite640e49a5bd5cb8a3b272af2d38aa2c5d9993949 (patch)
treeefdec9a92e47f20efe8b45860584319c9fac9a8c /system/nvme-cli/doinst.sh
parent41fa52299e271fdd4909b298cd0348f5f01986ea (diff)
downloadslackbuilds-e640e49a5bd5cb8a3b272af2d38aa2c5d9993949.tar.gz
20201026.1 global branch merge.current-20201026.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/nvme-cli/doinst.sh')
-rw-r--r--system/nvme-cli/doinst.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/system/nvme-cli/doinst.sh b/system/nvme-cli/doinst.sh
deleted file mode 100644
index b5a41d1d89..0000000000
--- a/system/nvme-cli/doinst.sh
+++ /dev/null
@@ -1,14 +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...
-}
-
-config etc/bash_completion.d/nvme.new