summaryrefslogtreecommitdiffstats
path: root/test/integration/openshift_health_checker/preflight/playbooks/package_update_repo_broken.yml
blob: 84e9360f54caa9d3fe520b125f6d490fb5e7eb8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
- include: ../../setup_container.yml
  vars:
    image: preflight-aos-package-checks
    l_host_vars:
      openshift_deployment_type: openshift-enterprise
      openshift_release: 3.2

- name: Fails when a repo definition is completely broken
  hosts: all
  roles:
    - openshift_health_checker

  post_tasks:
    - block:

        - include: tasks/enable_repo.yml
          vars: { repo_name: "break-yum" }

        - name: Break the break-yum repo
          replace:
            dest: /etc/yum.repos.d/break-yum.repo
            backup: no
            regexp: "^baseurl"
            replace: "#baseurl"

        - action: openshift_health_check
          args:
            checks: [ 'package_update' ]

      always:  # destroy the container whether check passed or not
        - include: ../../teardown_container.yml