Verify systemd is reloaded after galera post install

In the galera post install playbook, the systemd configuration files are
modified. This change verifies that systemctl daemon-reload is called,
so that these files are re-read, and the configuration is up-to-date.

Closes-Bug: #1656821
Change-Id: I5d8fcf1f2500146fc86db4dd19cd30aaa1055adb
This commit is contained in:
Omer Anson 2017-01-15 09:38:27 +02:00
parent 4d8b80395b
commit 30c73621fa

@ -111,3 +111,8 @@
state: absent
tags:
- galera-config
- name: Reload the systemd daemon
command: "systemctl daemon-reload"
when:
- ansible_service_mgr == 'systemd'