Isso pode ser corrigido modificando o modelo de energia para etherwake encontrado em /etc/maas/templates/power/ether_wake.template. As seguintes modificações devem corrigir seu problema:
mac_address={{mac_address}}
power_change={{power_change}}
ip_address={{ip_address}}
if [ "${power_change}" != 'on' ]
then
if [ -n "${ip_address}" ]
then
ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ubuntu@${ip_address} -C "echo 'sleep 2 && sudo /sbin/poweroff -f' | at now"
else
echo "Unable to power down a node using etherwake without ip address." >&2
exit 1
fi
elif [ -x /usr/bin/wakeonlan ]
then
/usr/bin/wakeonlan $mac_address
elif [ -x /usr/sbin/etherwake ]
then
if [ -n "${iface}" ]
then
/usr/sbin/etherwake -i "${iface}" $mac_address
else
/usr/sbin/etherwake $mac_address
fi
else
echo "No wakeonlan or etherwake program found." >&2
fi
exit 0