From 86c43f4f127af17861ea874af0a5771cdbedcd44 Mon Sep 17 00:00:00 2001 From: Jeoffrey Bauvin Date: Mon, 26 Oct 2015 16:03:29 +0100 Subject: Add repo --- manifests/repo/apt.pp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 manifests/repo/apt.pp (limited to 'manifests/repo') diff --git a/manifests/repo/apt.pp b/manifests/repo/apt.pp new file mode 100644 index 0000000..123d06d --- /dev/null +++ b/manifests/repo/apt.pp @@ -0,0 +1,22 @@ +# == Class gitlab_ci_multi_runner::repo::apt +# +# This class is private, do not use directly +# +class gitlab_ci_multi_runner::repo::apt { + include apt + + apt::source { 'gitlab-ci-multi-runner': + comment => 'This is an officiel apt repo for Gitlab Ci Multi Runner', + location => 'https://packages.gitlab.com/runner/gitlab-ci-multi-runner/debian/', + release => $::lsbdistcodename, + repos => 'main', + key => { + 'id' => '1A4C919DB987D435939638B914219A96E15E78F4', + 'source' => 'https://packages.gitlab.com/gpg.key', + }, + include => { + 'src' => true, + 'deb' => true, + }, + } +} \ No newline at end of file -- cgit v1.2.3