2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 17:43:14 +00:00

Add the check for primary nic to suse

This commit is contained in:
Jarrod Johnson 2020-06-30 18:48:10 -04:00
parent 27a2a58ea1
commit 0c3888441d
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@
[ -e /tmp/confluent.initq ] && return 0
echo -n "" > /tmp/confluent.initq
TRIES=0
while ! awk -F'|' '{print $3}' /tmp/confluent.info |grep 2 >& /dev/null && [ "$TRIES" -lt 60 ]; do
while ! awk -F'|' '{print $3}' /tmp/confluent.info |grep 1 >& /dev/null && [ "$TRIES" -lt 60 ]; do
TRIES=$((TRIES + 1))
cd /sys/class/net
for currif in *; do

View File

@ -21,7 +21,10 @@ for nic in *; do
done
echo -n "Discovering confluent..."
/opt/confluent/bin/copernicus -t > /tmp/confluent.info
while ! grep MANAGER: /tmp/confluent.info > /dev/null; do
TRIES=0
while ! awk -F'|' '{print $3}' /tmp/confluent.info |grep 1 >& /dev/null && [ "$TRIES" -lt 60 ]; do
TRIES=$((TRIES + 1))
/opt/confluent/bin/copernicus -t > /tmp/confluent.info
done
nodename=$(grep ^NODENAME: /tmp/confluent.info | head -n 1 | sed -e 's/NODENAME: //')