summaryrefslogtreecommitdiff
path: root/roles/apt-repo/github-containers/tasks
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2021-05-19 12:10:01 +0200
committerChristian Pointner <equinox@spreadspace.org>2021-05-19 12:56:39 +0200
commitd8dccd9ea23d45cfbe3c3ab55a0c7052a99cabe2 (patch)
treec2d91aa60af67ce1c1aa7c3b7a5b48c58c145b77 /roles/apt-repo/github-containers/tasks
parentfix epimetheus dstat script (diff)
rename apt-repo github-containers to kubic-project
Diffstat (limited to 'roles/apt-repo/github-containers/tasks')
-rw-r--r--roles/apt-repo/github-containers/tasks/main.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/roles/apt-repo/github-containers/tasks/main.yml b/roles/apt-repo/github-containers/tasks/main.yml
deleted file mode 100644
index fae56380..00000000
--- a/roles/apt-repo/github-containers/tasks/main.yml
+++ /dev/null
@@ -1,20 +0,0 @@
----
-- 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