aboutsummaryrefslogtreecommitdiff
path: root/network/varnish/doinst.sh
diff options
context:
space:
mode:
authorMatt Schurenko <matt.schurenko@gmail.com>2011-10-09 03:44:57 -0500
committerRobby Workman <rworkman@slackbuilds.org>2011-10-11 21:20:30 -0500
commit2b7c9cd06c6963ffae8087b1cce75a96b963073a (patch)
treeaab1a080e4ec604f7310807c3f1650da240e14c8 /network/varnish/doinst.sh
parentd237cb9dbda73bda305912e90b48f244e2c6bbec (diff)
network/varnish: Added (a state of the art web application accelerator)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'network/varnish/doinst.sh')
-rw-r--r--network/varnish/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/network/varnish/doinst.sh b/network/varnish/doinst.sh
new file mode 100644
index 0000000000000..b41b3781b9701
--- /dev/null
+++ b/network/varnish/doinst.sh
@@ -0,0 +1,26 @@
+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...
+}
+
+preserve_perms() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ -e $OLD ]; then
+ cp -a $OLD ${NEW}.incoming
+ cat $NEW > ${NEW}.incoming
+ mv ${NEW}.incoming $NEW
+ fi
+ config $NEW
+}
+
+preserve_perms etc/rc.d/rc.varnishd.new
+config etc/varnish/default.vcl.new