Merge "Ensure tasks are not skipped"

This commit is contained in:
Jenkins 2017-05-23 17:01:32 +00:00 committed by Gerrit Code Review
commit 6d7364e181
5 changed files with 37 additions and 42 deletions

View File

@ -25,7 +25,8 @@
- always
- name: Fail when virt type is unsupported
fail: msg="Unsupported Virt Type Provided {{ nova_supported_virt_types }}"
fail:
msg: "Unsupported Virt Type Provided {{ nova_supported_virt_types }}"
when:
- nova_virt_type is defined
- nova_virt_type not in nova_supported_virt_types

View File

@ -17,7 +17,6 @@
with_first_found:
- files:
- "nova_compute_{{ nova_virt_type }}.yml"
skip: true
paths:
- "drivers/{{ nova_virt_type }}/"
tags:

View File

@ -153,13 +153,7 @@
with_items:
- "{{ install_nova_role_packages.results }}"
- include: "{{ item }}"
with_first_found:
- files:
- "nova_console_{{ nova_console_type }}_install.yml"
skip: true
paths:
- "consoles/"
- include: "consoles/nova_console_{{ nova_console_type }}_install.yml"
when:
- "'nova_console' in group_names"
tags:

View File

@ -13,6 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Only PowerVM needs to load a separate file. Skip for the others.
- include: "{{ item }}"
with_first_found:
- files:

View File

@ -13,38 +13,38 @@
# See the License for the specific language governing permissions and
# limitations under the License.
- block:
- name: Get CPU info content and store as var
command: cat /proc/cpuinfo
register: cpuinfo_contents
changed_when: false
tags:
- always
- name: Get CPU info content and store as var
command: cat /proc/cpuinfo
register: cpuinfo_contents
changed_when: false
tags:
- always
- name: Register a fact for the nova kvm virt type
set_fact:
nova_virt_type: "kvm"
when: cpuinfo_contents.stdout.find('vmx') != -1
or cpuinfo_contents.stdout.find('svm') != -1
or cpuinfo_contents.stdout.find('PowerNV') != -1
or (cpuinfo_contents.stdout.find('pSeries') != -1
and cpuinfo_contents.stdout.find('qemu') != -1
and ansible_architecture == 'ppc64le')
tags:
- nova-virt-type-set
- name: Register a fact for the nova qemu virt type
set_fact:
nova_virt_type: "qemu"
tags:
- always
- name: Register a fact for the nova powervm virt type
set_fact:
nova_virt_type: "powervm"
when:
- cpuinfo_contents.stdout.find('pSeries') != -1
- ansible_architecture == 'ppc64le'
- cpuinfo_contents.stdout.find('qemu') == -1
tags:
- nova-virt-type-set
rescue:
- name: Register a fact for the nova qemu virt type
set_fact:
nova_virt_type: "qemu"
tags:
- always
- name: Register a fact for the nova kvm virt type
set_fact:
nova_virt_type: "kvm"
when:
- cpuinfo_contents.stdout.find('vmx') != -1
or cpuinfo_contents.stdout.find('svm') != -1
or cpuinfo_contents.stdout.find('PowerNV') != -1
or (cpuinfo_contents.stdout.find('pSeries') != -1
and cpuinfo_contents.stdout.find('qemu') != -1
and ansible_architecture == 'ppc64le')
tags:
- nova-virt-type-set
- name: Register a fact for the nova powervm virt type
set_fact:
nova_virt_type: "powervm"
when:
- cpuinfo_contents.stdout.find('pSeries') != -1
- ansible_architecture == 'ppc64le'
- cpuinfo_contents.stdout.find('qemu') == -1
tags:
- nova-virt-type-set