From 5764bc6990f8f7964dd4ed28c3acd1d1b14ef774 Mon Sep 17 00:00:00 2001 From: Roberto Date: Tue, 30 Oct 2018 14:47:23 +0100 Subject: [PATCH] added verify_checksum variable --- smartgears/quota_se_plugin/tasks/main.yml | 2 +- smartgears/quota_service/tasks/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/smartgears/quota_se_plugin/tasks/main.yml b/smartgears/quota_se_plugin/tasks/main.yml index 0235ca6..570bbbd 100644 --- a/smartgears/quota_se_plugin/tasks/main.yml +++ b/smartgears/quota_se_plugin/tasks/main.yml @@ -11,7 +11,7 @@ - block: - name: Get the quota plugin and install it inside the smart executor - maven_artifact: artifact_id={{ quota_se_plugin_name }} version={{ quota_se_plugin_version | default(omit) }} group_id={{ quota_se_plugin_group_id }} extension={{ quota_se_plugin_extension | default('war') }} repository_url={{ smartgears_global_base_url }} classifier={{ quota_se_plugin_classifier }} dest={{ smartgears_downloads_dir }}/{{ quota_se_plugin_file }} + maven_artifact: artifact_id={{ quota_se_plugin_name }} version={{ quota_se_plugin_version | default(omit) }} group_id={{ quota_se_plugin_group_id }} extension={{ quota_se_plugin_extension | default('war') }} repository_url={{ smartgears_global_base_url }} classifier={{ quota_se_plugin_classifier }} dest={{ smartgears_downloads_dir }}/{{ quota_se_plugin_file }} verify_checksum=always register: quota_storage_download - name: Remove the old quota plugin diff --git a/smartgears/quota_service/tasks/main.yml b/smartgears/quota_service/tasks/main.yml index da54f7a..418c980 100644 --- a/smartgears/quota_service/tasks/main.yml +++ b/smartgears/quota_service/tasks/main.yml @@ -14,7 +14,7 @@ - block: - name: Get the quota-service war - maven_artifact: artifact_id={{ quota_service_name }} version={{ quota_service_version | default(omit) }} group_id={{ quota_group_id }} extension={{ quota_service_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_downloads_dir }}/{{ quota_service_file }} + maven_artifact: artifact_id={{ quota_service_name }} version={{ quota_service_version | default(omit) }} group_id={{ quota_group_id }} extension={{ quota_service_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_downloads_dir }}/{{ quota_service_file }} verify_checksum=always register: quota_service_download - name: Remove the old quota service files