0
- name: Configure hosts
template: src=host.cfg.j2 dest=/etc/shinken/hosts/{{item.host_name}}.cfg
with_items: shinken_hosts
when: shinken_hosts is defined
notify: reload config
我想刪除所有其他CONFIGS(文件)在/ etc /進研/主機/此任務配置。
我該怎麼做?
(如果我修復了'shinken_hosts'中的拼寫錯誤,並且想要在名稱中錯誤地自動刪除舊配置,這真的很重要。
請提供示例。哪些文件必須被刪除,哪些不是 –
shinken_hosts:host1,host2。 /etc/shinken/hosts/host1.cfg的內容host2.cfg other_host.cfg,garbage.cfg。 host1和host2應該保留,other_host和垃圾應該被刪除。 –