From 19c869826462eadba55d4488de0439d07633f186 Mon Sep 17 00:00:00 2001 From: Bruce Potter Date: Thu, 29 May 2014 16:07:57 -0400 Subject: [PATCH] just changed comments --- xCAT-SoftLayer/bin/modifygrub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-SoftLayer/bin/modifygrub b/xCAT-SoftLayer/bin/modifygrub index 906699a6b..a1769e8e9 100755 --- a/xCAT-SoftLayer/bin/modifygrub +++ b/xCAT-SoftLayer/bin/modifygrub @@ -81,6 +81,7 @@ sub addKernelParms { $args->{kernelparms} .= " $bootif IPADDR=$ip NETMASK=$netmask NETWORK=$network BROADCAST=$broadcast GATEWAY=$gateway HOSTNAME=$nodename DEVICE=$nic GATEWAYDEV=$nic"; } else { # scripted install + #todo: the parameters for kickstart are likely different $args->{kernelparms} .= " $bootif hostip=$ip netmask=$netmask gateway=$gateway dns=$mnip hostname=$nodename netdevice=$nic netwait=$WAITTIME textmode=1"; } } @@ -93,7 +94,6 @@ sub getNodeIpInfo { verbose("using IP prefix $ipprefix"); # parse ip addr show output, looking for ipprefix, to determine nic, ip, mac - #todo: is there a way to find the actual/individual mac of the nic? When 2 nics are bonded, they both display the same mac. my @output = runcmd("ip addr show"); my ($nic, $mac, $ipandmask); foreach my $line (@output) {