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 - name: restart minio
service: service:
name: minio name: minio

View File

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