diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:09:00 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:09:00 +0200 |
commit | ae4763115ba31f0d4e38027b6c6b7ca925334782 (patch) | |
tree | 8f5a74f1fbade270451908b8d12bbc8af70a864a /network/tsocks/doinst.sh | |
parent | 636b88d6b92274ac38db796e369a268627a1732b (diff) |
network/tsocks: Removed from 13.0 repository
Diffstat (limited to 'network/tsocks/doinst.sh')
-rw-r--r-- | network/tsocks/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/network/tsocks/doinst.sh b/network/tsocks/doinst.sh deleted file mode 100644 index b065f5b4215e6..0000000000000 --- a/network/tsocks/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -# 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 |