标签: ansible
在ansible中,我使用以下命令将日期插入由ansible创建的文件中:
log_path: c:\ansible_wu{{ lookup('pipe', 'date +%Y%m%d') }}.txt
有没有办法在日期前面插入主机名? 所以文件看起来像这样:servername_wu20180518.txt
servername_wu20180518.txt
答案 0 :(得分:3)
您应该能够使用值{{ansible_hostname}}。