From 4c276ded1f37cc23d5c7588e67e60bd8794dca13 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Sun, 15 Jul 2007 09:26:54 +1000 Subject: if we dont have nc or netcat, try using netstat as a final attempt to check for tcp ports (the check for these tools should not really use hardcoded paths) (This used to be ctdb commit 56d77082c07a519dd3804cc24cc7ba889b8469ff) --- ctdb/config/functions | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ctdb/config/functions') diff --git a/ctdb/config/functions b/ctdb/config/functions index 1a6fc5c0c7..378d38ec02 100644 --- a/ctdb/config/functions +++ b/ctdb/config/functions @@ -69,8 +69,10 @@ ctdb_wait_tcp_ports() { /usr/bin/netcat -z 127.0.0.1 $p || all_ok=0 elif [ -x /usr/bin/nc ]; then /usr/bin/nc -z 127.0.0.1 $p || all_ok=0 + elif [ -x /usr/bin/netstat ]; then + (/usr/bin/netstat -a -n | egrep "0.0.0.0:$p .*LISTEN") || all_ok=0 else - echo "`date` netcat not found - cannot check tcp ports" + echo "`date` - No tool to check tcp ports availabe. can not check in ctdb_wait_tcp_ports" return fi done -- cgit