
Once upon a time, Jason Keltz <jas@cse.yorku.ca> said:
(I'm asking because I've kickstarted CentOS 7.1 as a host, and am having a few problems (eg. unable to talk to power management) and want to avoid debugging if it's already known to be broken... :)
The power management appears to be a bug between vdsm and the fence agents. Are you using fence_ipmilan? It seems to not be seeing options. Otherwise, I'm running CentOS 7.1 + ovirt 3.5.1 on hosts okay. My work-around (quick-n-dirty hack until I have more time to look and file an appropriate bug) for fence_ipmilan is the following script in /usr/local/sbin (I just need the "lanplus" option, adjust as needed): ######################################################################## #!/bin/sh cat - > /tmp/ipmi.$$ echo -e '\nlanplus=1' >> /tmp/ipmi.$$ cat /tmp/ipmi.$$ | /usr/sbin/fence_ipmilan.real $@ rm -f /tmp/ipmi.$$ ######################################################################## -- Chris Adams <cma@cmadams.net>