summaryrefslogtreecommitdiffstats
path: root/network/thttpd/doinst.sh
diff options
context:
space:
mode:
author Antonio Hernández Blas2010-05-13 01:00:23 +0200
committer David Somero2010-05-13 01:00:23 +0200
commit31aa3ec3e0153775e449bcdfeaba83b156746c93 (patch)
treebe8ee615ec4a3195c01c409df29f6eb1edfab7d0 /network/thttpd/doinst.sh
parent70696b7acf8911f58e6bce1d69c694c3bb233336 (diff)
downloadslackbuilds-31aa3ec3e0153775e449bcdfeaba83b156746c93.tar.gz
network/thttpd: Added to 13.0 repository
Diffstat (limited to 'network/thttpd/doinst.sh')
-rw-r--r--network/thttpd/doinst.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/network/thttpd/doinst.sh b/network/thttpd/doinst.sh
new file mode 100644
index 0000000000..0a6e18b3e8
--- /dev/null
+++ b/network/thttpd/doinst.sh
@@ -0,0 +1,20 @@
+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
+