added apigee script debug mode
diff --git a/tasks/install-mirror.yml b/tasks/install-mirror.yml
index 98fb0c4..e840d44 100644
--- a/tasks/install-mirror.yml
+++ b/tasks/install-mirror.yml
@@ -5,7 +5,7 @@
JAVA_HOME: '{{ java_home }}'
when: opdk_version | version_compare('4.16.01', '==')
-- name: DEBUG_MODE: Install bootstrap from local repository for 4.16.01
+- name: DEBUG_MODE - Install bootstrap from local repository for 4.16.01
shell: "bash -x {{ archive_folder }}/repos/bootstrap.sh apigeeprotocol='file://' apigeerepobasepath={{ archive_folder }}/repos JAVA_FIX=C"
env:
JAVA_HOME: '{{ java_home }}'
@@ -17,7 +17,7 @@
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
+- name: DEBUG_MODE - Install bootstrap from local repository for greater than 4.16.01
shell: "bash -x {{ archive_folder }}/repos/bootstrap_{{ opdk_version }}.sh apigeeprotocol='file://' apigeerepobasepath={{ archive_folder }}/repos JAVA_FIX=C"
env:
JAVA_HOME: '{{ java_home }}'
diff --git a/tasks/online/install-bootstrap-with-no-proxy.yml b/tasks/online/install-bootstrap-with-no-proxy.yml
index df954de..048c4ed 100644
--- a/tasks/online/install-bootstrap-with-no-proxy.yml
+++ b/tasks/online/install-bootstrap-with-no-proxy.yml
@@ -5,7 +5,7 @@
JAVA_HOME: '{{ java_home }}'
when: upgrade_edge is defined and upgrade_edge | bool == True
-- name: DEBUG_MODE: Update apigee-service if upgrade_edge is set as part of an upgrade
+- name: DEBUG_MODE - Update apigee-service if upgrade_edge is set as part of an upgrade
shell: "bash -x {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword='{{ apigee_repo_password }}' JAVA_FIX=C"
env:
JAVA_HOME: '{{ java_home }}'
@@ -21,7 +21,7 @@
when: apigee_stage is not defined
register: results
-- name: DEBUG_MODE: Install bootstrap from the provided apigee_repo_uri and apigee_repo_protocol with no proxy
+- name: DEBUG_MODE - Install bootstrap from the provided apigee_repo_uri and apigee_repo_protocol with no proxy
shell: 'bash -x {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword={{ apigee_repo_password }} apigeerepohost={{ apigee_repo_uri | default(default_apigee_repo_uri) }} apigeeprotocol={{ apigee_repo_protocol | default(default_apigee_repo_protocol) }}:// JAVA_FIX=C'
args:
creates: '{{ apigee_installation_home }}/apigee-service/bin/apigee-service'
@@ -41,7 +41,7 @@
register: results
when: apigee_stage is defined
-- name: DEBUG_MODE: Install bootstrap from development repositories with no proxy
+- name: DEBUG_MODE - Install bootstrap from development repositories with no proxy
shell: 'bash -x {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword={{ apigee_repo_password }} apigeestage={{ apigee_stage }} apigeerepohost={{ apigee_repo_uri | default(default_apigee_repo_uri) }} apigeeprotocol={{ apigee_repo_protocol | default(default_apigee_repo_protocol) }}:// JAVA_FIX=C'
args:
creates: '{{ apigee_installation_home }}/apigee-service/bin/apigee-service'
diff --git a/tasks/online/install-bootstrap-with-proxy.yml b/tasks/online/install-bootstrap-with-proxy.yml
index 99dde3e..a64f170 100644
--- a/tasks/online/install-bootstrap-with-proxy.yml
+++ b/tasks/online/install-bootstrap-with-proxy.yml
@@ -9,7 +9,7 @@
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
-- name: DEBUG_MODE: Update apigee-service if upgrade_edge is set as part of an upgrade with proxy
+- name: DEBUG_MODE - Update apigee-service if upgrade_edge is set as part of an upgrade with proxy
shell: "bash -x {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword='{{ apigee_repo_password }}' JAVA_FIX=C"
env:
JAVA_HOME: '{{ java_home }}'
@@ -33,7 +33,7 @@
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
-- name: DEBUG_MODE: Install bootstrap from the provided apigee_repo_uri and apigee_repo_protocol with proxy
+- name: DEBUG_MODE - Install bootstrap from the provided apigee_repo_uri and apigee_repo_protocol with proxy
shell: 'bash -x {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword={{ apigee_repo_password }} apigeerepohost={{ apigee_repo_uri | default(default_apigee_repo_uri) }} apigeeprotocol={{ apigee_repo_protocol | default(default_apigee_repo_protocol) }}:// JAVA_FIX=C'
args:
creates: '{{ apigee_installation_home }}/apigee-service/bin/apigee-service'
@@ -61,7 +61,7 @@
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
-- name: DEBUG_MODE: Install bootstrap from development repositories with proxy
+- name: DEBUG_MODE - Install bootstrap from development repositories with proxy
shell: 'bash -x {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword={{ apigee_repo_password }} apigeestage={{ apigee_stage }} apigeerepohost={{ apigee_repo_uri | default(default_apigee_repo_uri) }} apigeeprotocol={{ apigee_repo_protocol | default(default_apigee_repo_protocol) }}:// JAVA_FIX=C'
args:
creates: '{{ apigee_installation_home }}/apigee-service/bin/apigee-service'