From b151cd7b139768a17daa22cf48afdd5e9fbf8481 Mon Sep 17 00:00:00 2001 From: Francesco Pantano Date: Fri, 29 Oct 2021 11:35:25 +0200 Subject: [PATCH] Reload dbus config should work for both c8 and c9 c9 ship dbus-broker by default instead of dbus-daemon. This means we should make sure the command is valid for both the use cases. Related-Bug: #1949033 Change-Id: Ibdf87463d4a86dd225a1f1b89326407628facb65 --- .../roles/tripleo_cephadm/tasks/ganesha/start_nfs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleo_ansible/roles/tripleo_cephadm/tasks/ganesha/start_nfs.yaml b/tripleo_ansible/roles/tripleo_cephadm/tasks/ganesha/start_nfs.yaml index b85623715..8b91ca411 100644 --- a/tripleo_ansible/roles/tripleo_cephadm/tasks/ganesha/start_nfs.yaml +++ b/tripleo_ansible/roles/tripleo_cephadm/tasks/ganesha/start_nfs.yaml @@ -25,7 +25,7 @@ mode: "0644" - name: reload dbus configuration - command: "killall -SIGHUP dbus-daemon" + command: "killall -r -SIGHUP dbus-*" when: tripleo_cephadm_ceph_nfs_dynamic_exports | bool delegate_to: "{{ nfs_node }}"