ฉันพยายามพิมพ์mosh_version
ตัวแปรที่ลงทะเบียนก่อนหน้านี้โดยใช้debug msg
คำสั่งansible เช่นนี้:
- 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 }}"
แต่นี่จะพิมพ์ "Mosh"
เป็นวิธีที่ดีที่สุดในการทำงานนี้คืออะไร
TASK: [ Print mosh version] ************************************** ok: [127.0.0.1] => { "msg": "Mosh" }