Alex Krzos 1e94748243 Break out installers.
Change-Id: Ief31a62d72003a02c9291dd0125efb46cc730579
2015-12-22 15:14:48 -05:00

15 lines
497 B
YAML

---
- name: Check Nova vif_plugging
command: crudini --get /etc/nova/nova.conf DEFAULT vif_plugging_is_fatal
register: bz1264740
failed_when: "'True' not in '{{ bz1264740.stdout }}'"
changed_when: false
ignore_errors: True
- name: Check Nova vif_plugging_timeout
command: crudini --get /etc/nova/nova.conf DEFAULT vif_plugging_timeout
register: nova_vif_timeout_result
failed_when: nova_vif_timeout > nova_vif_timeout_result.stdout|int
changed_when: false
ignore_errors: True