blob: 7bf0087170bd044108b408a8582de1510ecc06a0 [file] [log] [blame]
---
# tasks file for apigee-opdk-setup-component
- block:
- name: Install Apigee component for version {{ opdk_version }} or greater - {{ profile }}
shell: '{{ apigee_setup }} -p {{ profile }} -f {{ opdk_installation_config_file }}'
when: opdk_version | version_compare('4.16.01', '>=')
- name: Checking to see if failure was real by starting the components
ignore_errors: yes
shell: '{{ apigee_all }} start'
when: opdk_version | version_compare('4.16.01', '>=')
rescue:
- name: Checking to see if failure was real by starting the components
ignore_errors: yes
shell: '{{ apigee_all }} start'
when: opdk_version | version_compare('4.16.01', '>=')
- name: Need to pause between component installation
pause:
seconds: '{{ network_pause }}'