我有具有用户列表的vars_files
vars_files:
- user_list_files.yml
其中包含以下详细信息:
users:
- user1
- user2
我已经使用名称应用程序创建了文件夹,数据库现在我需要在所有提到的文件夹上使用user_list_files.yml中的用户名创建文件
- name: create files based on the users
file:
path: /root/s3/role-user/{{ item.group }}/{{ item.userfile }}
state: touch
mode: 0700
with_nested:
- { group: 'application', userfile: "{{ users }}"}
注意:出现错误时,请提出建议。