Don't fail if compute node is powered off in compute-node-discovery.yml

Some BMCs aren't idempotent, and cause ipmitool to fail if the requested power
state is already set.
This commit is contained in:
Mark Goddard 2017-12-14 16:06:09 +00:00
parent 301e7bcb25
commit 5e82121505

View File

@ -22,6 +22,10 @@
- name: Ensure baremetal compute nodes are powered off
command: ipmitool -U {{ ipmi_username }} -P {{ ipmi_password }} -H {{ ipmi_address }} -I lanplus chassis power off
delegate_to: "{{ controller_host }}"
failed_when:
- result | failed
# Some BMCs complain if the node is already powered off.
- "'Command not supported in present state' not in result.stderr"
vars:
# NOTE: Without this, the controller's ansible_host variable will not
# be respected when using delegate_to.