Merge pull request #38 from sberthier/restart-service-on-update

Restart minio service on binary or service config update
This commit is contained in:
Ben Kochie 2019-07-20 16:37:37 +02:00 committed by GitHub
commit c4c442ca34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: