summaryrefslogtreecommitdiff
path: root/network/tsocks/doinst.sh
diff options
context:
space:
mode:
authorDaniel <whitehate{at}gmail{dot}com>2010-05-11 22:55:03 +0200
committerErik Hanson <erik@slackbuilds.org>2010-05-11 22:55:03 +0200
commit0b727d595f7c034ccefe1826ae4f8571156b1a7e (patch)
tree1fb1c7d56c8ac746ad5679a02a88eec09d1e4100 /network/tsocks/doinst.sh
parentd78b6a7ed3c79aff6f4f94402e3d1b8d5b41208a (diff)
downloadslackbuilds-0b727d595f7c034ccefe1826ae4f8571156b1a7e.tar.gz
network/tsocks: Added to 12.1 repository
Diffstat (limited to 'network/tsocks/doinst.sh')
-rw-r--r--network/tsocks/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/network/tsocks/doinst.sh b/network/tsocks/doinst.sh
new file mode 100644
index 0000000000..b065f5b421
--- /dev/null
+++ b/network/tsocks/doinst.sh
@@ -0,0 +1,15 @@
+# Handle configuration files
+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...
+}
+# List of configuration files (they should end in .new)
+
+config etc/tsocks.conf.new