summaryrefslogtreecommitdiffstats
path: root/network/squid/doinst.sh
diff options
context:
space:
mode:
author David Somero <dsomero@hotmail.com>2010-05-11 20:01:44 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-11 20:01:44 +0200
commit2bc0efd73ea73d28b0c180711de99249c8609878 (patch)
treee5feff8d64bbfb52ffbcc5e7c861837b78419e3e /network/squid/doinst.sh
parent592862627db3069274d6d2b9aed677b29f518fe4 (diff)
downloadslackbuilds-2bc0efd73ea73d28b0c180711de99249c8609878.tar.gz
slackbuilds-2bc0efd73ea73d28b0c180711de99249c8609878.tar.xz
network/squid: Added to 12.0 repository
Diffstat (limited to 'network/squid/doinst.sh')
-rw-r--r--network/squid/doinst.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/network/squid/doinst.sh b/network/squid/doinst.sh
new file mode 100644
index 0000000000..18b429664a
--- /dev/null
+++ b/network/squid/doinst.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+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.squid.new:
+if [ -e etc/rc.d/rc.squid ]; then
+ cp -a etc/rc.d/rc.squid etc/rc.d/rc.squid.new.incoming
+ cat etc/rc.d/rc.squid.new > etc/rc.d/rc.squid.new.incoming
+ mv etc/rc.d/rc.squid.new.incoming etc/rc.d/rc.squid.new
+else
+ # Install executable otherwise - irrelevant unless user starts in rc.local
+ chmod 0755 etc/rc.d/rc.squid.new
+fi
+
+config etc/rc.d/rc.squid.new
+config etc/squid/mime.conf.new
+config etc/squid/squid.conf.new
+config etc/squid/cachemgr.conf.new
+