aboutsummaryrefslogtreecommitdiff
path: root/network/varnish/doinst.sh
diff options
context:
space:
mode:
authorCherife Li <cherife@dotimes.com>2010-05-11 20:01:45 +0200
committerRobby Workman <rworkman@slackbuilds.org>2010-05-11 20:01:45 +0200
commit31ed2c363fc98bc200244b4cf2356ccacf7e6771 (patch)
tree52bc564dc3764633df860c5398684c25bab51396 /network/varnish/doinst.sh
parentcd508c90a7ad0c94466224d6d1c3c18912fcdfe9 (diff)
network/varnish: Added to 12.0 repository
Diffstat (limited to 'network/varnish/doinst.sh')
-rw-r--r--network/varnish/doinst.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/network/varnish/doinst.sh b/network/varnish/doinst.sh
new file mode 100644
index 000000000000..eacbac22fdaa
--- /dev/null
+++ b/network/varnish/doinst.sh
@@ -0,0 +1,24 @@
+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.varnishd.new:
+if [ -e etc/rc.d/rc.varnishd ]; then
+ cp -a etc/rc.d/rc.varnishd etc/rc.d/rc.varnishd.new.incoming
+ cat etc/rc.d/rc.varnishd.new > etc/rc.d/rc.varnishd.new.incoming
+ mv etc/rc.d/rc.varnishd.new.incoming etc/rc.d/rc.varnishd.new
+fi
+
+config etc/rc.d/rc.varnishd.new
+config etc/varnish/default.vcl.new
+config etc/varnish/zope-plone.vcl.new
+