handler: read container_exec_cmd value from first mon

Given that we delegate to the first monitor, we must read the value of
`container_exec_cmd` from this node.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1792320

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit eb9112d8fb)
pull/4986/head v4.0.12
Guillaume Abrioux 2020-01-23 15:51:17 +01:00
parent 4152a1a862
commit 9fb69e13ed
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
_osd_handler_called: True
- name: unset noup flag
command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd unset noup"
command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd unset noup"
delegate_to: "{{ groups[mon_group_name][0] }}"
run_once: true
changed_when: False