You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project
Greetings.
I am trying to setup a playbook for automating an installation.
While transferring a file (binary response file) through template module, getting following error.
fatal: [xxxx.xxxx.local] => {'msg': 'AnsibleError: unable to process as utf-8: /etc/ansible/ORA_Patch/templates/ocm_12cLinux_PSU_Jan2016.rsp', 'failed': True}
Any advice on this please.
Thanks.
GJ
Toshio Kuratomi
unread,
Apr 5, 2016, 11:03:34 PM4/5/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ansible...@googlegroups.com
Ansible does not currently handle non-ut8 data in playbooks or most of
its text-processing modules. template would fall under the latter
category. Due to the way jinja2 works it may be that template (which
is a jinja2 template) may never handle that. If you tell us what
you're attempting to do we might be able to help you find an alternate
method of doing it. You may have to resort to using command: and
basic unix tools in the workaround, though.