diff options
author | Paul Wisehart <wise@lupulin.net> | 2010-05-12 17:43:42 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 17:43:42 +0200 |
commit | 33600556ed1dca13f60555278b06e6c14d074cea (patch) | |
tree | d23255828a059fbe7a3ac9c0e23e31ed492163f4 /network/lighttpd/doinst.sh | |
parent | 53979f7b2ebfe5f96ff3f7e9f23dcad7fcd7939a (diff) | |
download | slackbuilds-33600556ed1dca13f60555278b06e6c14d074cea.tar.gz |
network/lighttpd: Updated for version 1.4.22
Diffstat (limited to 'network/lighttpd/doinst.sh')
-rw-r--r-- | network/lighttpd/doinst.sh | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/network/lighttpd/doinst.sh b/network/lighttpd/doinst.sh index 172a5987b9..f606c2f077 100644 --- a/network/lighttpd/doinst.sh +++ b/network/lighttpd/doinst.sh @@ -1,17 +1,33 @@ -#!/bin/sh - config() { NEW="$1" - OLD="`dirname $NEW`/`basename $NEW .new`" + 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 + 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.lighttpd.new: +if [ -e etc/rc.d/rc.lighttpd ]; then + cp -a etc/rc.d/rc.lighttpd etc/rc.d/rc.lighttpd.new.incoming + cat etc/rc.d/rc.lighttpd.new > etc/rc.d/rc.lighttpd.new.incoming + mv etc/rc.d/rc.lighttpd.new.incoming etc/rc.d/rc.lighttpd.new +fi + config etc/lighttpd/lighttpd.conf.new config etc/logrotate.d/lighttpd.new config etc/rc.d/rc.lighttpd.new + +# Create dummy logfiles, but throw them away if logfiles are already here: +for i in access error ; do + if [ -e var/log/lighttpd/${i}.log ]; then + rm -f var/log/lighttpd/${i}.log.new + else + mv var/log/lighttpd/${i}.log.new var/log/lighttpd/${i}.log + fi +done + |