Add missing skip_install conditions

skip_install condition is missing for inspector and ironic-staging-drivers

Change-Id: I0bc602fd12ba822a110e3cec6e0bea9fcb86ae2e
This commit is contained in:
Andrey Shestakov 2016-12-28 21:59:19 +02:00
parent 0128ca8638
commit 9b7d791d96

View File

@ -95,8 +95,8 @@
when: skip_install is not defined
- name: "Install ironic-inspector to permit use of inspection interface"
include: inspector_install.yml
when: enable_inspector | bool == true
when: skip_install is not defined and enable_inspector | bool == true
- name: "Install ironic-staging-drivers"
include: staging_install.yml
when: staging_drivers_include | bool == true
when: skip_install is not defined and staging_drivers_include | bool == true