Próbuję wydrukować poprzednio zarejestrowaną mosh_version
zmienną za pomocą debug msg
polecenia ansible w następujący sposób:
- name: Print mosh version
debug: msg="Mosh Version: {{ mosh_version.stdout }}"
Nie działa i drukuje następujący błąd:
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 }}"
próbowałem
- name: Print mosh version
debug: msg=Mosh Version: "{{ mosh_version.stdout }}"
ale to po prostu wypisze „Mosh”.
Jaki jest najlepszy sposób na uruchomienie tego?
TASK: [ Print mosh version] ************************************** ok: [127.0.0.1] => { "msg": "Mosh" }