mirror of
https://github.com/atosatto/ansible-minio.git
synced 2024-11-28 12:25:11 +01:00
38 lines
898 B
YAML
38 lines
898 B
YAML
---
|
|
- name: include os-specific variables
|
|
include_vars: "{{ ansible_os_family }}.yml"
|
|
|
|
- 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: "{{ minio_ansible_support_packages }}"
|
|
register: _install_packages
|
|
until: _install_packages is succeeded
|
|
retries: 5
|
|
delay: 2
|
|
|
|
- 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
|
|
|
|
- include: client.yml
|
|
when: minio_install_client
|