diff options
author | Antonio Hernández Blas <hba.nihilismus@gmail.com> | 2010-05-13 01:00:23 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 01:00:23 +0200 |
commit | 31aa3ec3e0153775e449bcdfeaba83b156746c93 (patch) | |
tree | be8ee615ec4a3195c01c409df29f6eb1edfab7d0 /network/thttpd/doinst.sh | |
parent | 70696b7acf8911f58e6bce1d69c694c3bb233336 (diff) |
network/thttpd: Added to 13.0 repository
Diffstat (limited to 'network/thttpd/doinst.sh')
-rw-r--r-- | network/thttpd/doinst.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/network/thttpd/doinst.sh b/network/thttpd/doinst.sh new file mode 100644 index 000000000000..0a6e18b3e8d5 --- /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 + |