Ansible 角色的基本目录结构是:
rolename
files
templates
tasks
...
现在我的问题是文件或模板文件夹中是否可以有这样的目录结构:
rolename
files
templates
etc
hosts
tasks
...
所以我的任务可能看起来像:
- name: Approve hosts file
template:
src: ./etc/hosts (I WANT TO REFERENCE THE FILE INSIDE THE TEMPLATES FOLDER)
dest: /etc/hosts
这不起作用:(
如何引用模板文件夹中的文件?
重要我不想要模板文件夹内的平面结构,因为我想模仿文件系统,所以我只需查看模板文件夹结构就知道文件将被复制到哪里。
仅供参考,当我使用平面结构时,它可以工作。