Hello - Attached are patches for named and pgsql patches that repace "==" with "=" when compare strings.
-- Serge Dubrouski.
/heartbeat/pgsql +++ b/heartbeat/pgsql @@ -644,7 +644,7 @@ esac pgsql_validate_all rc=$? -[ "$1" == "validate-all" ] && exit $rc +[ "$1" = "validate-all" ] && exit $rc if [ $rc -ne 0 ] then
--- a/heartbeat/pgsql +++ b/heartbeat/pgsql @@ -644,7 +644,7 @@ esac pgsql_validate_all rc=$? -[ "$1" == "validate-all" ] && exit $rc +[ "$1" = "validate-all" ] && exit $rc if [ $rc -ne 0 ] then
_______________________________________________________ Linux-HA-Dev: [email protected] http://lists.linux-ha.org/mailman/listinfo/linux-ha-dev Home Page: http://linux-ha.org/
