| --- |
| # tasks file for apigee-opdk-start-components |
| - name: Start Apigee component {{ component_name }} |
| ignore_errors: yes |
| shell: '{{ apigee_all }} start' |
| when: component_name == 'all' and opdk_version | version_compare('4.16.01', '>=') |
| |
| - name: Start Apigee component {{ component_name }} |
| ignore_errors: yes |
| shell: '{{ apigee_service }} {{ component_name }} start' |
| when: component_name != 'all' and opdk_version | version_compare('4.16.01', '>=') |
| |
| - name: Time delay to give components time to start |
| pause: |
| minutes: '{{ component_start_delay | default(0) }}' |