From bf416eac65275845e3c6de36fcedc102c07d219d Mon Sep 17 00:00:00 2001 From: Leo Maroni Date: Tue, 23 Jun 2020 15:25:22 +0200 Subject: [PATCH] Fixed adding bird apt-repositories --- tasks/bird-repos.yml | 6 +++--- tasks/main.yml | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tasks/bird-repos.yml b/tasks/bird-repos.yml index ab096a6..73e43b3 100644 --- a/tasks/bird-repos.yml +++ b/tasks/bird-repos.yml @@ -1,10 +1,10 @@ --- - name: Add birds packaging Key apt_key: - url: "http://bird.network.cz/debian/apt.gpg" + url: "https://packages.sury.org/bird/apt.gpg" state: present - name: Ensure bird repos are present apt_repository: - repo: "deb https://bird.network.cz/debian/ {{ ansible_distribution_release }} main" - update_cache: yes \ No newline at end of file + repo: "deb https://packages.sury.org/bird/ {{ ansible_distribution_release }} main" + update_cache: yes diff --git a/tasks/main.yml b/tasks/main.yml index 0daca3d..17e652e 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,5 +1,6 @@ --- - import_tasks: sysctl.yml +- import_tasks: bird-repos.yml - import_tasks: bird2.yml - include_tasks: wireguard.yml loop: "{{ dn42_peers }}" @@ -31,4 +32,4 @@ - "ip a add {{ dn42_local_v4 }}/32 dev lo" - "ip a add {{ dn42_local_v6 }}/128 dev lo" state: present - notify: restart networking \ No newline at end of file + notify: restart networking