次のような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 }}"
しかし、これは単に「Mosh」を出力します。
これを実行するための最良の方法は何ですか?
TASK: [ Print mosh version] ************************************** ok: [127.0.0.1] => { "msg": "Mosh" }