diff options
author | Cherife Li <cherife@dotimes.com> | 2010-05-11 22:54:48 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:54:48 +0200 |
commit | 57ffdc3d18412f405daec78eeefca32a12fb2e63 (patch) | |
tree | 880ff2fe1693127b762373d2e23095c24258d7cb /network/haproxy/doinst.sh | |
parent | 0ee18f68bb6860a1b3cbf83658ee93def4196e3f (diff) |
network/haproxy: Added to 12.1 repository
Diffstat (limited to 'network/haproxy/doinst.sh')
-rw-r--r-- | network/haproxy/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
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 |