-Correct mistake in previous update

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@6364 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2010-06-07 13:05:16 +00:00
parent 8f8ac0a1bb
commit bc4993d32a

View File

@ -99,8 +99,6 @@ $rc = $?;
if ($rc) { #some shoddy vendors ignore the IPMI 2.0 requirement to support IPMI 1.5 formats for BMC capability determination, attempt IPMI 2.0 even without the ability to confirm IPMI 2.0 support. Though SOL was not baked in prior IPMI 2.0, this script supports pre-2.0 'ISOL' on older devices, hence why we are checking for 1.5/2.0 before proceeding normally
@mcinfo=`$ipmitool -I lanplus -U $username -P $password -H $bmc mc info`;
$rc = $?;
}
@mcinfo=`$ipmitool -I lan -U $username -P $password -H $bmc mc info`;#| grep 'Manufacturer ID : 343' > /dev/null 2>&1";
}
while ($rc != 0) {
$sleepint = 10+int(rand(20));