summaryrefslogtreecommitdiff
path: root/roles/apt-repo/github-containers/tasks/main.yml
blob: fae563804747fea0fab68f72155a9dc1f1ebd9b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: add repository key
  copy:
    src: repo.gpg
    dest: /etc/apt/trusted.gpg.d/github-containers.gpg
  register: apt_repo_github_containers_key

- name: add repository entry
  copy:
    content: |
      deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/{{ (ansible_distribution == 'Ubuntu') | ternary('xUbuntu', ansible_distribution) }}_{{ ansible_distribution_version }}/ /
    dest: /etc/apt/sources.list.d/github-containers.list
  register: apt_repo_github_containers_sources

- name: update apt cache
  when: apt_repo_github_containers_key is changed or
        apt_repo_github_containers_sources is changed
  command: apt-get update
  args:
    warn: false