Saya mencoba mencetak yang sebelumnya terdaftar mosh_version
variabel yang menggunakan debug msg
perintah yang mungkin seperti ini:
- name: Print mosh version
debug: msg="Mosh Version: {{ mosh_version.stdout }}"
Tidak berfungsi dan mencetak kesalahan berikut:
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 }}"
Saya mencoba
- name: Print mosh version
debug: msg=Mosh Version: "{{ mosh_version.stdout }}"
tetapi ini hanya akan mencetak "Mosh".
Apa cara terbaik untuk menjalankan ini?
TASK: [ Print mosh version] ************************************** ok: [127.0.0.1] => { "msg": "Mosh" }