mirror of
https://github.com/atosatto/ansible-minio.git
synced 2025-02-18 01:21:49 +01:00
14 lines
317 B
YAML
14 lines
317 B
YAML
---
|
|
- name: download minio client
|
|
get_url:
|
|
url: "{{ minio_client_download_url }}"
|
|
dest: "{{ minio_client_bin }}"
|
|
owner: "root"
|
|
group: "root"
|
|
mode: 0755
|
|
checksum: "sha256:{{ minio_client_checksum }}"
|
|
register: _download_client
|
|
until: _download_client is succeeded
|
|
retries: 5
|
|
delay: 2
|