Suppress curl warning w/shell module

Using curl from the shell module generates an Ansible warning.
This patch adds "warn: no" to suppress the warning.

Change-Id: I83a52173aea5e5574d4d1acee16ebad95845ff5e
(cherry picked from commit c40827db06)
This commit is contained in:
Major Hayden 2017-09-01 09:37:19 -05:00
parent a9964643f6
commit 417406b531
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,8 @@
- name: Get list of python clients
shell: "curl -s {{ repo_release_path }}/requirements_absolute_requirements.txt | grep client | cut -d'=' -f1"
args:
warn: no
register: client_list
run_once: true
changed_when: false