summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/yum/tasks/cacheonly.yml
blob: 03cbd0e9c6cfeca8dcbc65031f3e59fd3d04451a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: Test cacheonly (clean before testing)
  command: yum clean all

- name: Try installing from cache where it has been cleaned
  yum:
    name: sos
    state: latest
    cacheonly: true
  register: yum_result
  ignore_errors: true

- name: Verify yum failure
  assert:
    that:
      - "yum_result is failed"