forked from ansible_roles/dn42
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
281 B
YAML
10 lines
281 B
YAML
5 years ago
|
---
|
||
|
- name: Add birds packaging Key
|
||
|
apt_key:
|
||
|
url: "http://bird.network.cz/debian/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
|