updated check_haproxy_syntax.sh
b7202ccc
Hari Sekhon
committed
1 changed file
check_haproxy_syntax.sh
/check_haproxy_syntax.sh-1+1
/check_haproxy_syntax.sh
Add comment 42 local cfg="$1"
Add comment 43 local str
Add comment 44 str="$(printf "%-${maxwidth}s " "$cfg:")"
Add comment 45 Plus   if grep -q '^[[:space:]]*http-check send meth' "$cfg"; then
Add comment 45 46 #if haproxy -v | grep -Eqi '^HA-?Proxy version (1|2\.[01])'; then
Add comment 46 47 if [ "$(bc <<< "$haproxy_version < 2.2")" = 1 ]; then
Add comment 47 Minus   if grep -q '^[[:space:]]*http-check send meth' "$cfg"; then
Add comment 48 echo "$str Skipping due to old HAProxy version not supporting 'http-check send meth'"
Add comment 49 return
Add comment 50 fi