Ever found a bunch of machines that somehow got misconfigured and aren't set to PXE boot, but your IPMI access does appear to work?
Here's a gross hack. Pipe the list of affected asset tags to this abomination.
while read tag; do collins find -c ipmi -t $tag; done | awk '{print $9,$21}' | sed 's|[,)]||g' | awk '{print "ipmitool -I lanplus -H",$1,"-P",$2,"-U root chassis bootdev pxe"}' | bash -x
Much better would be if collins or consolr could easily issue that IPMI chassis bootdev pxe command to them in a more standard way.
Should be very easy to add to consolr. Having it go via the collins server would of course provide better logging.