summaryrefslogtreecommitdiffstats
path: root/libraries/barry/doinst.sh
diff options
context:
space:
mode:
author Vincent Batts <vbatts@hashbangbash.com>2010-05-12 17:40:20 +0200
committer David Somero <xgizzmo@slackbuilds.org>2010-05-12 17:40:20 +0200
commit7fedb3de8f6b369b7db84c690a0e1e9b9e7bc8ff (patch)
tree660603d4b57515e3e83222150aa0c41af1a51142 /libraries/barry/doinst.sh
parentd10ebe3caf8033bfb7ee046c91b1c415dd2539cd (diff)
downloadslackbuilds-7fedb3de8f6b369b7db84c690a0e1e9b9e7bc8ff.tar.gz
slackbuilds-7fedb3de8f6b369b7db84c690a0e1e9b9e7bc8ff.tar.xz
libraries/barry: Updated for version 0.14
Diffstat (limited to 'libraries/barry/doinst.sh')
-rw-r--r--libraries/barry/doinst.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/libraries/barry/doinst.sh b/libraries/barry/doinst.sh
deleted file mode 100644
index f1bc12fcd3..0000000000
--- a/libraries/barry/doinst.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-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/modprobe.d/barry.new
-