summaryrefslogtreecommitdiffstats
path: root/network/thttpd/doinst.sh
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2011-03-14 16:16:10 -0500
committer Robby Workman <rworkman@slackbuilds.org>2011-03-14 16:16:10 -0500
commit43e17f44b22c85caf2bf9278db6b940dc3a93f2b (patch)
tree8b113755e3bed1889de73e81512559b64386c9ac /network/thttpd/doinst.sh
parenta7ea463fff1c1d11c4d6596bfa7b56f96c78dc95 (diff)
downloadslackbuilds-43e17f44b22c85caf2bf9278db6b940dc3a93f2b.tar.gz
slackbuilds-43e17f44b22c85caf2bf9278db6b940dc3a93f2b.tar.xz
network/thttpd: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006576.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/thttpd/doinst.sh')
-rw-r--r--network/thttpd/doinst.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/network/thttpd/doinst.sh b/network/thttpd/doinst.sh
deleted file mode 100644
index 0a6e18b3e8..0000000000
--- a/network/thttpd/doinst.sh
+++ /dev/null
@@ -1,20 +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...
-}
-
-# Keep same perms on rc.INIT.new:
-if [ -e etc/rc.d/rc.thttpd ]; then
- cp -a etc/rc.d/rc.thttpd etc/rc.d/rc.thttpd.new.incoming
- cat etc/rc.d/rc.thttpd.new > etc/rc.d/rc.thttpd.new.incoming
- mv etc/rc.d/rc.thttpd.new.incoming etc/rc.d/rc.thttpd.new
-fi
-