updated roles
diff --git a/tasks/main.yml b/tasks/main.yml
index 91b0438..2b82764 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -1,6 +1,6 @@
 ---
 - name: Install Apigee component with proxy - {{ component }}
-  shell: '/bin/bash {{ apigee_service }} {{ component }} install'
+  command: '/bin/bash {{ apigee_service }} {{ component }} install'
   environment:
     http_proxy: "{{ http_proxy }}"
     https_proxy: "{{ https_proxy }}"
@@ -8,7 +8,7 @@
   when: opdk_debug_mode is not defined or opdk_debug_mode | trim | lower == 'off'
 
 - name: DEBUG_MODE - Install Apigee component - {{ component }}
-  shell: '/bin/bash -x {{ apigee_service }} {{ component }} install'
+  command: '/bin/bash -x {{ apigee_service }} {{ component }} install'
   environment:
     http_proxy: "{{ http_proxy }}"
     https_proxy: "{{ https_proxy }}"