summaryrefslogtreecommitdiffstats
path: root/system/nvme-cli/doinst.sh
diff options
context:
space:
mode:
author Matteo Bernardini2020-05-03 10:26:34 +0200
committer Matteo Bernardini2020-05-03 10:26:34 +0200
commit48259ed40770acaca280ee12a8434410f58aff30 (patch)
treef1ed654e2693aa523ece7d3bb3cadf0fe9089d66 /system/nvme-cli/doinst.sh
parenta5a09aea950fef7569ac816b34a99b71830760d4 (diff)
downloadslackbuilds-current-20200503.1.tar.gz
20200503.1 global branch merge.current-20200503.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