Restart minio service on binary or service config update

This commit is contained in:
Sébastien Berthier 2019-07-19 11:20:05 +02:00
parent 61c242e187
commit d59d46c707
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,10 @@
---
- name: reload minio systemd
systemd:
name: minio
daemon_reload: True
- name: restart minio
service:
name: minio

View File

@ -41,6 +41,7 @@
until: _download_server is succeeded
retries: 5
delay: 2
notify: restart minio
- name: Generate the Minio server envfile
template:
@ -58,6 +59,9 @@
owner: "root"
group: "root"
when: ansible_service_mgr == "systemd"
notify:
- reload minio systemd
- restart minio
- name: Create the Minio server init.d config
template:
@ -67,6 +71,7 @@
group: "root"
mode: 0750
when: ansible_service_mgr != "systemd"
notify: restart minio
- name: Enable and start the Minio service
service: