Skip to content
Snippets Groups Projects
Commit ebf4afda authored by caoyuan's avatar caoyuan
Browse files

Move the ironic-check action into prechecks.yml

Change-Id: Ia1fa141acd7233f0c9dd30dd3d13e31cf1a2fb8e
parent 62d17e48
No related branches found
No related tags found
No related merge requests found
--- ---
- include_tasks: ironic-check.yml
- include_tasks: register.yml - include_tasks: register.yml
when: inventory_hostname in groups['neutron-server'] when: inventory_hostname in groups['neutron-server']
......
---
- fail: msg="Ironic must be enabled when using networking-baremetal/ironic-neutron-agent"
when:
- enable_ironic_neutron_agent | bool
- not (enable_ironic | bool)
...@@ -57,3 +57,11 @@ ...@@ -57,3 +57,11 @@
when: when:
- (groups['inner-compute'] | default([]) | length > 0 - (groups['inner-compute'] | default([]) | length > 0
or groups['external-compute'] | default([]) | length > 0) or groups['external-compute'] | default([]) | length > 0)
- name: Checking whether Ironic enabled
local_action: fail msg="Ironic must be enabled when using networking-baremetal/ironic-neutron-agent"
changed_when: false
run_once: True
when:
- enable_ironic_neutron_agent | bool
- not (enable_ironic | bool)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment