Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要通过从 mac 地址中删除冒号来从 ansbile 事实(例如 ansible_default_ipv4.macaddress)创建一个文件
我已经尝试了我能想到的一切,但无法让它发挥作用
您可以使用replace过滤器将冒号替换为空。
replace
例如,仅将不带冒号的 mac 地址写入文件:
- copy: content="{{ansible_default_ipv4.macaddress|replace(':','')}}" dest=/path/to/file
Jinja2 内置过滤器列表