我找到了找到ansible模塊Ansible - 否定過濾
- find:
paths: "/"
patterns: ["*.service"]
file_type: file
hidden: True
recurse: yes
register: find_results
when: ansible_service_mgr == "systemd"
現在我要檢查修改某些文件的權限一些文件:
- file:
path: "{{ item.path }}"
owner: root
group: root
mode: 0644
with_items:
- "{{ find_results.files }}"
when:
- item.path | match("/sys/devices/power/events/*")
- ansible_service_mgr == "systemd"
的問題是,我不不想要比賽。我想要所有不符合該路徑的東西?
我怎麼能否定匹配過濾器? (!,不等)?
所以你需要通過投票的答案,如果有幫助的感謝,並接受的答案,如果它是正確的。 – BMW