From b459eab77a5104d7b7c1a28d27691f045d9d77d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20S=C3=89RIE?= Date: Thu, 20 Jun 2019 10:04:10 +0200 Subject: [PATCH] apt: Install evolix public repo only for Debian Closes #56 --- apt/tasks/evolix_public.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apt/tasks/evolix_public.yml b/apt/tasks/evolix_public.yml index ba0a0da6..dc80a1b4 100644 --- a/apt/tasks/evolix_public.yml +++ b/apt/tasks/evolix_public.yml @@ -13,7 +13,7 @@ #url: http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x44975278B8612B5D data: "{{ lookup('file', 'reg.gpg') }}" -- name: Evolix public list is installed +- name: Evolix public list is installed (only for Debian) template: src: evolix_public.list.j2 dest: /etc/apt/sources.list.d/evolix_public.list @@ -22,6 +22,7 @@ register: apt_evolix_public tags: - apt + when: ansible_distribution == "Debian" - name: Apt update apt: