From c40827db06510945b2c933546ec0ffb0f0b34a1a Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Fri, 1 Sep 2017 09:37:19 -0500 Subject: [PATCH] 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 --- playbooks/utility-install.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playbooks/utility-install.yml b/playbooks/utility-install.yml index 3e14ceb795..20a7a7c680 100644 --- a/playbooks/utility-install.yml +++ b/playbooks/utility-install.yml @@ -58,6 +58,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