Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions roles/callhome_configure/tasks/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down