summaryrefslogtreecommitdiffstats
path: root/network/varnish/doinst.sh
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:01 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:01 +0200
commitfa5a9461ecd1bb5dc0963348ce2c0f96e5573423 (patch)
tree523bbe1f7f5637b5856d2e6174d0c3193f6fe300 /network/varnish/doinst.sh
parent4bdc9ca47792fe15b4ea139d915710ea45298abd (diff)
downloadslackbuilds-fa5a9461ecd1bb5dc0963348ce2c0f96e5573423.tar.gz
slackbuilds-fa5a9461ecd1bb5dc0963348ce2c0f96e5573423.tar.xz
network/varnish: Removed from 13.0 repository
Diffstat (limited to 'network/varnish/doinst.sh')
-rw-r--r--network/varnish/doinst.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/network/varnish/doinst.sh b/network/varnish/doinst.sh
deleted file mode 100644
index eacbac22fd..0000000000
--- a/network/varnish/doinst.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-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
-