コロンを含む場合にエラーが起きる
参考:
Ansible の YAML で「:」を使う方法 – Qiita
YAML syntax error when string contains a colon + space · Issue #2769 · ansible/ansible – GitHub
How can escape colon in a string within an Ansible YAML file? – Stack Overflow
become_user 指定時のエラー
一時ファイルの所有者を変更できない旨のエラーが発生する。
Failed to change ownership of the temporary files Ansible needs to create despite connecting as root. Unprivileged become user would be unable to read the file.
原因:
存在しないユーザーを指定している。
対処法:
必要なユーザーを作成する。もしくは、存在するユーザーを指定する。
参考:
Failure running command as non privileged user · Issue #16052 · ansible/ansible – GitHub
シンボリックリンク作成時に発生するエラー
シンボリックリンク (symlink) が作成できずにエラーが発生する。
Error while linking: [Errno 2] No such file or directory
原因:
親フォルダが存在しない。
対処法:
親フォルダを作成しておく。
参考:
Setting up symlink error – Stack Overflow
UNREACHABLE
参考:
Ansible のエラーメッセージ | ときどき Ansible 日記 (pj-doaa.hatenablog.com)