mirror of
https://github.com/atosatto/ansible-minio.git
synced 2024-11-26 12:05:16 +01:00
35 lines
827 B
YAML
35 lines
827 B
YAML
---
|
|
|
|
- name: include os-specific variables
|
|
include_vars: "{{ ansible_os_family }}.yml"
|
|
|
|
# add the python sni support to legacy python installations
|
|
- include: python_sni.yml
|
|
when: ansible_os_family == 'Debian'
|
|
and ansible_python_version is version_compare('2.6.0', '>=')
|
|
and ansible_python_version is version_compare('2.7.9', '<')
|
|
|
|
# install additional ansible dependencies
|
|
- name: install ansible support packages
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items: "{{ ansible_support_packages }}"
|
|
|
|
- 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: not skip_server
|
|
|
|
- include: client.yml
|
|
when: not skip_client
|