summaryrefslogtreecommitdiffstats
path: root/system/pmount/doinst.sh
diff options
context:
space:
mode:
author Robby Workman2013-11-16 08:10:22 +0100
committer Robby Workman2013-11-22 06:52:42 +0100
commitdf82702324608b805ef5b7b0271197297dc34031 (patch)
tree7641065430cbd7c07a4a2b243f7e546f51f3a5cf /system/pmount/doinst.sh
parent6f338bf1016b0b574957349746e78064c560327c (diff)
downloadslackbuilds-df82702324608b805ef5b7b0271197297dc34031.tar.gz
system/pmount: Removed (upstream appears gone)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/pmount/doinst.sh')
-rw-r--r--system/pmount/doinst.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/system/pmount/doinst.sh b/system/pmount/doinst.sh
deleted file mode 100644
index f34d4a61bb..0000000000
--- a/system/pmount/doinst.sh
+++ /dev/null
@@ -1,15 +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/pmount.allow.new
-