Merge "Pass name to os_ironic and os_ironic_node modules"

This commit is contained in:
Jenkins 2015-10-02 19:04:21 +00:00 committed by Gerrit Code Review
commit 922da4fa9a
3 changed files with 6 additions and 3 deletions

View File

@ -17,7 +17,8 @@
auth_type: None
auth: None
ironic_url: "{{ ironic_url }}"
uuid: "{{ uuid }}"
uuid: "{{ uuid | default() }}"
name: "{{ name | default() }}"
state: absent
instance_info: "{}"
delegate_to: localhost

View File

@ -18,7 +18,8 @@
auth: None
ironic_url: "{{ ironic_url }}"
driver: ""
uuid: "{{ uuid }}"
uuid: "{{ uuid | default() }}"
name: "{{ name | default() }}"
state: absent
nics: "{{ nics }}"
driver_info: "{}"

View File

@ -18,7 +18,8 @@
auth: None
ironic_url: "{{ ironic_url }}"
driver: "{{ driver }}"
uuid: "{{ uuid }}"
uuid: "{{ uuid | default() }}"
name: "{{ name | default() }}"
state: present
nics: "{{nics}}"
properties: "{{ properties }}"