मैं इस तरह mosh_version
से ansible debug msg
कमांड का उपयोग करके पहले से पंजीकृत चर को प्रिंट करने का प्रयास करता हूं :
- name: Print mosh version
debug: msg="Mosh Version: {{ mosh_version.stdout }}"
यह काम नहीं करता है और निम्नलिखित त्रुटि प्रिंट करता है:
Note: The error may actually appear before this position: line 55, column 27
- name: Print mosh version
debug: msg="Mosh Version: {{ mosh_version.stdout }}"
^
We could be wrong, but this one looks like it might be an issue with
missing quotes. Always quote template expression brackets when they
start a value. For instance:
with_items:
- {{ foo }}
Should be written as:
with_items:
- "{{ foo }}"
मैंने कोशिश की
- name: Print mosh version
debug: msg=Mosh Version: "{{ mosh_version.stdout }}"
लेकिन यह सिर्फ "मोश" छपेगा।
इसे चलाने का सबसे अच्छा तरीका क्या है?
TASK: [ Print mosh version] ************************************** ok: [127.0.0.1] => { "msg": "Mosh" }