updated attributes for upload and install of archive
diff --git a/tasks/main.yml b/tasks/main.yml
index 8222c00..87ccd86 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -3,12 +3,12 @@
 - block:
   - name: Configure local repository - 4.16.01
     become: true
-    shell: "bash {{ apigeerepobasepath }}/repos/bootstrap.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath }}/repos JAVA_FIX=C"
+    shell: "bash {{ apigeerepobasepath | default(opdk_installer_path) }}/repos/bootstrap.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath | default(opdk_installer_path) }}/repos JAVA_FIX=C"
     when: opdk_debug_mode is not defined or opdk_debug_mode | trim | lower == 'off'
 
   - name: DEBUG_MODE - Configure local repository - 4.16.01
     become: true
-    shell: "bash -x {{ apigeerepobasepath }}/repos/bootstrap.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath }}/repos JAVA_FIX=C"
+    shell: "bash -x {{ apigeerepobasepath | default(opdk_installer_path) }}/repos/bootstrap.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath | default(opdk_installer_path) }}/repos JAVA_FIX=C"
     when: opdk_debug_mode is defined and opdk_debug_mode | trim | lower == 'on'
 
   when: opdk_version | version_compare('4.16.01', '==')
@@ -16,12 +16,12 @@
 - block:
   - name: Configure local repository for greater than 4.16.01
     become: true
-    shell: "bash {{ apigeerepobasepath }}/repos/bootstrap_{{ opdk_version }}.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath }}/repos JAVA_FIX=C"
+    shell: "bash {{ apigeerepobasepath | default(opdk_installer_path) }}/repos/bootstrap_{{ opdk_version }}.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath | default(opdk_installer_path) }}/repos JAVA_FIX=C"
     when: opdk_debug_mode is not defined or opdk_debug_mode | trim | lower == 'off'
 
   - name: DEBUG_MODE - Configure local repository for greater than 4.16.01
     become: true
-    shell: "bash -x {{ apigeerepobasepath }}/repos/bootstrap_{{ opdk_version }}.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath }}/repos JAVA_FIX=C"
+    shell: "bash -x {{ apigeerepobasepath | default(opdk_installer_path) }}/repos/bootstrap_{{ opdk_version }}.sh apigeeprotocol='file://' apigeerepobasepath={{ apigeerepobasepath | default(opdk_installer_path) }}/repos JAVA_FIX=C"
     when: opdk_debug_mode is defined and opdk_debug_mode | trim | lower == 'on'
 
   when: opdk_version | version_compare('4.16.01', '>')