blob: 658565d09a0845d026503a4608581a962c0b6b3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
- name: add repository key
copy:
src: repo.gpg
dest: /etc/apt/keyrings/kubic-project.gpg
register: apt_repo_kubic_project_key
- name: add repository entry
copy:
content: |
deb [signed-by=/etc/apt/keyrings/kubic-project.gpg] 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/kubic-project.list
register: apt_repo_kubic_project_sources
- name: update apt cache
when: apt_repo_kubic_project_key is changed or
apt_repo_kubic_project_sources is changed
command: apt-get update
|