forked from ISTI-ansible-roles/ansible-roles
added verify_checksum variable
This commit is contained in:
parent
2df8a0e07b
commit
5764bc6990
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue