From 35d905f1687c7599ec405cf3c7907077d22c13ec Mon Sep 17 00:00:00 2001 From: Roberto Date: Mon, 29 Oct 2018 17:51:26 +0100 Subject: [PATCH] Added verify_checksum variable --- smartgears/smart_executor/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartgears/smart_executor/tasks/main.yml b/smartgears/smart_executor/tasks/main.yml index 18784987..1a778a8f 100644 --- a/smartgears/smart_executor/tasks/main.yml +++ b/smartgears/smart_executor/tasks/main.yml @@ -12,7 +12,7 @@ - block: # NOTE: Install as the smartgears user so we do not mess with the permissions - name: Get the smart executor service war - maven_artifact: artifact_id={{ smart_executor_name }} version={{ smart_executor_version | default('latest') }} group_id={{ smart_executor_group_id }} extension={{ smart_executor_extension | default('war') }} repository_url={{ smart_executor_url }} dest={{ smartgears_downloads_dir }}/{{ smart_executor_file }} + maven_artifact: artifact_id={{ smart_executor_name }} version={{ smart_executor_version | default('latest') }} group_id={{ smart_executor_group_id }} extension={{ smart_executor_extension | default('war') }} repository_url={{ smart_executor_url }} dest={{ smartgears_downloads_dir }}/{{ smart_executor_file }} verify_checksum=always register: smartexecutor_download - name: Remove the old smart executor files if an upgrade is planned