From 57ffdc3d18412f405daec78eeefca32a12fb2e63 Mon Sep 17 00:00:00 2001 From: Cherife Li Date: Tue, 11 May 2010 22:54:48 +0200 Subject: network/haproxy: Added to 12.1 repository --- network/haproxy/doinst.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 network/haproxy/doinst.sh (limited to 'network/haproxy/doinst.sh') diff --git a/network/haproxy/doinst.sh b/network/haproxy/doinst.sh new file mode 100644 index 000000000000..3560e24e37e5 --- /dev/null +++ b/network/haproxy/doinst.sh @@ -0,0 +1,14 @@ +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... +} + +config etc/rc.d/rc.haproxy.new -- cgit v1.2.3