我根据他们的IP从库存文件创建文件。
- local_action: file dest=/file{{ groups['firewall'] }}.txt state=touch
创建文件时,无论如何命名
[U' 10.12.89.12&#39]。TXT
有没有办法让它命名为 10.13.89.12.txt ?
答案 0 :(得分:1)
你可以试试这个:
- local_action:
module: file
dest: /file/{{ item }}.txt
state: touch
with_items: groups['firewall']