ansible-minio/tasks/client.yml
2018-06-25 15:03:31 +02:00

13 lines
266 B
YAML

---
- name: download minio client
get_url:
url: "{{ minio_client_download_url }}"
dest: "{{ minio_client_bin }}"
owner: "root"
group: "root"
mode: 0755
register: _download_client
until: _download_client is succeeded
retries: 5
delay: 2