ansible/test/integration/targets/dnf/tasks/cacheonly.yml

16 lines
310 B
YAML
Raw Normal View History

---
- 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"