update task names
diff --git a/tasks/no_proxy.yml b/tasks/no_proxy.yml
index dac90ae..97408aa 100644
--- a/tasks/no_proxy.yml
+++ b/tasks/no_proxy.yml
@@ -1,8 +1,8 @@
---
-- name: Install Apigee component for version {{ opdk_version }} or greater - {{ profile }}
+- name: Install Apigee component for version {{ opdk_version }} or greater with no proxy - {{ profile }}
command: '{{ apigee_setup }} -p {{ profile }} -f {{ opdk_installation_config_file }}'
when: opdk_version | version_compare('4.16.01', '>=')
-- name: Wait for ready
+- name: Wait for ready with no proxy
command: '{{ apigee_all }} wait_for_ready'
when: validate_ready | default(true)
diff --git a/tasks/with_proxy.yml b/tasks/with_proxy.yml
index 1444f74..0fc22da 100644
--- a/tasks/with_proxy.yml
+++ b/tasks/with_proxy.yml
@@ -1,13 +1,12 @@
---
-- name: Install Apigee component for version {{ opdk_version }} or greater - {{ profile }}
+- name: Install Apigee component for version {{ opdk_version }} or greater with proxy - {{ profile }}
command: '{{ apigee_setup }} -p {{ profile }} -f {{ opdk_installation_config_file }}'
when: opdk_version | version_compare('4.16.01', '>=')
environment:
- no_proxy: "{{ no_proxy }}"
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
-- name: Wait for ready
+- name: Wait for ready with no proxy
command: '{{ apigee_all }} wait_for_ready'
when: validate_ready | default(true)