2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-03 03:50:08 +00:00

Added "ipmi=on" to channel setaccess so ipmi user can remotely hit bmc on Intel S2600 compute boards (not enabled out of box).

This commit is contained in:
ladams00 2017-12-26 22:52:21 -08:00
parent 734e034612
commit 60388ddf1e

View File

@ -481,8 +481,8 @@ for user in $BMCUS; do
fi
TRIES=0
# Enable the channel link for the specified user
while ! ipmitool -d $idev channel setaccess $LANCHAN $USERSLOT link=on; do
# Enable the channel and ipmi link for the specified user
while ! ipmitool -d $idev channel setaccess $LANCHAN $USERSLOT link=on ipmi=on; do
sleep 1
let TRIES=TRIES+1
if [ $TRIES -gt $TIMEOUT ]; then break; fi