在ansible 2.0.1.0上运行模板导致IOError:[Errno 2]没有这样的文件或目录:u'

时间:2016-03-29 00:16:59

标签: templates block ansible

所有晚上, 我为模板设置了以下内容

- name: Copy and create config
          template:
            vars:
              appname: CTR DEVCUL
              tiername: CTR CUI
              hostname: ansible_fqdn.split('.')[0]
            src: /absolute/path/to/template.xml.j2
            dest: /absolute/path/to/config.xml
            mode: 0644

当我尝试执行时我得到IOError:[Errno 2]没有这样的文件或目录:u' /absolute/path/to/template.xml.j2

为什么这个你'被添加,如何摆脱它?

1 个答案:

答案 0 :(得分:0)

u''只是一个字符串文字,like r'';这是Ansible打印字符串的工件。

确实确定文件存在于那条路径上吗?