ansible-minio/tasks/main.yml

15 lines
393 B
YAML
Raw Normal View History

2017-01-02 17:52:58 +01:00
---
2018-06-25 15:36:37 +02:00
2018-08-20 20:25:15 +02:00
- name: Add sni support to legacy python installations
2019-07-01 20:52:19 +02:00
include_tasks: python_sni.yml
2018-06-25 11:19:02 +02:00
when:
- ansible_os_family == 'Debian'
- ansible_python_version is version_compare('2.6.0', '>=')
- ansible_python_version is version_compare('2.7.9', '<')
2019-07-01 20:52:19 +02:00
- include_tasks: install-server.yml
when: minio_install_server
2017-01-02 17:52:58 +01:00
2019-07-01 20:52:19 +02:00
- include_tasks: install-client.yml
when: minio_install_client