diff options
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 |
commit | 2bc0efd73ea73d28b0c180711de99249c8609878 (patch) | |
tree | e5feff8d64bbfb52ffbcc5e7c861837b78419e3e /network/squid/doinst.sh | |
parent | 592862627db3069274d6d2b9aed677b29f518fe4 (diff) |
network/squid: Added to 12.0 repository
Diffstat (limited to 'network/squid/doinst.sh')
-rw-r--r-- | network/squid/doinst.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/network/squid/doinst.sh b/network/squid/doinst.sh new file mode 100644 index 000000000000..18b429664a46 --- /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 + |