summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ctdb/config/functions4
1 files changed, 3 insertions, 1 deletions
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