ansible/test/integration/targets/dnf/tasks/cacheonly.yml
Amin Vakil fdee5ca16d
Add cacheonly option to yum and dnf modules (#73820)
* Add integration test

* Add changelog

Co-authored-by: Matt Clay <matt@mystile.com>
2021-04-16 11:08:52 -04:00

15 lines
310 B
YAML

---
- name: Test cacheonly (clean before testing)
command: dnf clean all
- name: Try installing from cache where it has been cleaned
dnf:
name: sos
state: latest
cacheonly: true
register: dnf_result
- name: Verify dnf has not changed
assert:
that:
- "not dnf_result is changed"