Önceden kaydedilmiş mosh_version
değişkeni aşağıdaki debug msg
gibi ansible komutunu kullanarak yazdırmaya çalışıyorum :
- name: Print mosh version
debug: msg="Mosh Version: {{ mosh_version.stdout }}"
Çalışmıyor ve aşağıdaki hatayı yazdırıyor:
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 }}"
denedim
- name: Print mosh version
debug: msg=Mosh Version: "{{ mosh_version.stdout }}"
ama bu sadece "Mosh" yazdıracaktır.
Bunu çalıştırmanın en iyi yolu nedir?
TASK: [ Print mosh version] ************************************** ok: [127.0.0.1] => { "msg": "Mosh" }