2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-30 09:36:41 +00:00

Merge pull request #3569 from immarvin/onsetbootfromnet

fix issue The line 71 of postbootscript setbootfromnet is wrong in rhels7.4GA #3562
This commit is contained in:
Yuan Bai 2017-07-31 17:42:06 +08:00 committed by GitHub
commit ea6498a638

View File

@ -47,7 +47,7 @@ if [ ! -z $NODE_NAME ]; then
if [[ $OS = "Linux" ]]; then
CLIENT_IP=`ping -c 3 $NODE_NAME | sed '/icmp_seq/!d;s/.*(\([0-9.]\+\)).*/\1/' | uniq 2>&1`
RET=`echo $?`
NIC=`ip route | grep "src $CLIENT_IP" | sed -r 's/.*dev (.*) proto.*/\1/' 2>&1`
NIC=`ip route | grep "src $CLIENT_IP" | sed -r 's/.*dev (.*) +proto.*/\1/' 2>&1`
NRET=`echo $?`
else ## for AIX
CLIENT_IP=`ping -c 3 $NODE_NAME | grep "icmp_seq" | sed 's/.*from \([0-9.]*\):.*/\1/' | uniq 2>&1`