mirror of
https://github.com/atosatto/ansible-minio.git
synced 2025-01-02 17:48:05 +01:00
Restart minio service on binary or service config update
This commit is contained in:
parent
61c242e187
commit
d59d46c707
@ -1,5 +1,10 @@
|
||||
---
|
||||
|
||||
- name: reload minio systemd
|
||||
systemd:
|
||||
name: minio
|
||||
daemon_reload: True
|
||||
|
||||
- name: restart minio
|
||||
service:
|
||||
name: minio
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user