fix some error in enablekdump postscript

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8938 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
mxi1 2011-02-28 10:21:26 +00:00
parent 14c7d0072e
commit 9f2a9ad2a2

View File

@ -12,12 +12,12 @@ for i in `/bin/cat /proc/cmdline`; do
ETHX=${ifname%:$MACX*}
break
elif [ "$KEY" = "netdev" ]; then
ETHX=$netdev
ETHX=`/bin/echo $i | /bin/awk -F= '{print $2}'`
MACX=`/sbin/ip link show $netdev | /bin/grep ether | /bin/awk '{print $2}'`
break
elif [ "$KEY" = "BOOTIF" ]; then
MACX=$BOOTIF
ETHX=`/sbin/ifconfig | /bin/grep -i $BOOTIF | /bin/awk '{print $1}'`
MACX=`/bin/echo $i | /bin/awk -F= '{print $2}'`
ETHX=`/sbin/ifconfig | /bin/grep -i $MACX | /bin/awk '{print $1}'`
break
fi
done