clean up bootstrap
diff --git a/tasks/main.yml b/tasks/main.yml index ca721c5..b9fe4b2 100644 --- a/tasks/main.yml +++ b/tasks/main.yml
@@ -1,6 +1,6 @@ --- - name: Install Apigee component with proxy - {{ component }} - shell: '{{ apigee_service }} {{ component }} install' + command: '{{ apigee_service }} {{ component }} install' environment: http_proxy: "{{ http_proxy }}" https_proxy: "{{ https_proxy }}" @@ -10,7 +10,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 }}"