From bcb6fe8eb80f91a280addb546b060517448862df Mon Sep 17 00:00:00 2001 From: root Date: Wed, 15 Oct 2025 10:59:54 +0200 Subject: [PATCH] fix callhome configuration string fields --- roles/callhome_configure/tasks/configure.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/callhome_configure/tasks/configure.yml b/roles/callhome_configure/tasks/configure.yml index dc370ee6..c4edea08 100755 --- a/roles/callhome_configure/tasks/configure.yml +++ b/roles/callhome_configure/tasks/configure.yml @@ -86,14 +86,14 @@ - name: cluster | Set callhome machine country if it is defined set_fact: - extra_callhome_option: "{{ extra_callhome_option }} --machine-country {{ scale_callhome_params.machine_country }}" + extra_callhome_option: "{{ extra_callhome_option }} --machine-country\"{{ scale_callhome_params.machine_country }}\"" when: - scale_callhome_params is defined and scale_callhome_params.machine_country is defined - name: cluster | Set callhome machine state if it is defined set_fact: - extra_callhome_option: "{{ extra_callhome_option }} --machine-state {{ scale_callhome_params.machine_state }}" + extra_callhome_option: "{{ extra_callhome_option }} --machine-state \"{{ scale_callhome_params.machine_state }}\"" when: - scale_callhome_params is defined and scale_callhome_params.machine_state is defined