summaryrefslogtreecommitdiffstats
path: root/roles/atomic_base/tasks/ostree.yml
blob: b9d366f1ba148357ce2cfc7412d5c2e725f7ed13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- name: Copy ostree repo config
  copy: >
    src=ostree/repo_config
    dest=/ostree/repo/config
    owner=root
    group=root
    mode=0644

- name: "WORK AROUND: Stat redhat repo file"
  stat: path=/etc/yum.repos.d/redhat.repo
  register: redhat_repo

- name: "WORK AROUND: subscription manager failures"
  file: >
    path=/etc/yum.repos.d/redhat.repo
    state=touch
  when: redhat_repo.stat.exists == False