From 0bb0af608f2f9230c24b91a756151acbe9c11064 Mon Sep 17 00:00:00 2001 From: Matthew Reschke Date: Tue, 6 Oct 2020 12:16:15 -0600 Subject: [PATCH] Update gitlab with a debian 10 repo --- app/gitlab/tasks/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/gitlab/tasks/main.yml b/app/gitlab/tasks/main.yml index 7c363f9..9dffd2c 100644 --- a/app/gitlab/tasks/main.yml +++ b/app/gitlab/tasks/main.yml @@ -11,6 +11,11 @@ apt_repository: repo='deb https://packages.gitlab.com/gitlab/gitlab-ee/debian/ stretch main' state=present when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9" +# Add Gitlab repositories - Debian 10 Stretch +- name: Adding Gitlab sources for Debian 10 Buster + apt_repository: repo='deb https://packages.gitlab.com/gitlab/gitlab-ee/debian/ buster main' state=present + when: ansible_os_family == "Debian" and ansible_distribution_major_version == "10" + # Install Gitlab # CE vs EE see https://about.gitlab.com/install/ce-or-ee/?distro=debian - name: Installing Gitlab