blob: fc3c636e32bc4f73162caf7dae51fea4df94ac55 [file] [log] [blame]
---
- name: Install bootstrap from local repository for 4.16.01
shell: "bash {{ apigeerepobasepath }}/repos/bootstrap.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath }}/repos JAVA_FIX=C"
env:
JAVA_HOME: '{{ java_home }}'
when: opdk_version | version_compare('4.16.01', '==')
- name: DEBUG_MODE - Install bootstrap from local repository for 4.16.01
shell: "bash -x {{ apigeerepobasepath }}/repos/bootstrap.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath }}/repos JAVA_FIX=C"
env:
JAVA_HOME: '{{ java_home }}'
when: opdk_version | version_compare('4.16.01', '==') and opdk_debug_mode is defined and opdk_debug_mode | trim | lower == 'on'
- name: Install bootstrap from local repository for greater than 4.16.01
shell: "bash {{ apigeerepobasepath }}/repos/bootstrap_{{ opdk_version }}.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath }}/repos JAVA_FIX=C"
env:
JAVA_HOME: '{{ java_home }}'
when: opdk_version | version_compare('4.16.01', '>')
- name: DEBUG_MODE - Install bootstrap from local repository for greater than 4.16.01
shell: "bash -x {{ apigeerepobasepath }}/repos/bootstrap_{{ opdk_version }}.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath }}/repos JAVA_FIX=C"
env:
JAVA_HOME: '{{ java_home }}'
when: opdk_version | version_compare('4.16.01', '>') and opdk_debug_mode is defined and opdk_debug_mode | trim | lower == 'on'