From 0ac1a7e7fa4f13a7115f1e822d2a0754321d3e86 Mon Sep 17 00:00:00 2001 From: Joao C Costa Date: Mon, 17 Feb 2020 15:40:31 +0000 Subject: [PATCH] Fixing the semantic of skip_azure_sdk I believe the previous condition was reversed (ie, it would only run if skip_azure_sdk was set to true, which means it would be run most of the time because the default setting is set to true). --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index bd001478..4a16ad31 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -3,7 +3,7 @@ pip: requirements: "{{ role_path }}/files/requirements-azure.txt" extra_args: -I - when: skip_azure_sdk + when: (skip_azure_sdk is undefined) or (not skip_azure_sdk) - debug: msg: