ansible-minio/tasks/main.yml

39 lines
860 B
YAML
Raw Normal View History

2017-01-02 17:52:58 +01:00
---
2018-06-25 15:36:37 +02:00
- include: preflight.yml
2018-06-25 11:19:02 +02:00
- name: add the python sni support to legacy python installations
include: python_sni.yml
when:
- ansible_os_family == 'Debian'
- ansible_python_version is version_compare('2.6.0', '>=')
- ansible_python_version is version_compare('2.7.9', '<')
- name: install ansible support packages
package:
name: "{{ item }}"
state: present
with_items:
- ca-certificates
2018-06-25 15:03:31 +02:00
register: _install_packages
until: _install_packages is succeeded
retries: 5
delay: 2
when: ansible_os_family == 'Debian'
2017-01-02 17:52:58 +01:00
- name: create minio group
group:
name: "{{ minio_group }}"
state: present
- name: create minio user
user:
name: "{{ minio_user }}"
group: "{{ minio_group }}"
shell: /bin/bash
- include: server.yml
when: minio_install_server
2017-01-02 17:52:58 +01:00
- include: client.yml
when: minio_install_client