21 lines
600 B
YAML
21 lines
600 B
YAML
- name: Ensure nlnetlabs APT repo is present
|
|
ansible.builtin.deb822_repository:
|
|
name: nlnetlabs
|
|
types: deb
|
|
suites: bookworm # trixie version not available yet
|
|
uris:
|
|
- "https://packages.nlnetlabs.nl/linux/debian"
|
|
components:
|
|
- main
|
|
signed_by: https://packages.nlnetlabs.nl/aptkey.asc
|
|
state: present
|
|
when: rpki.run_routinator is defined and rpki.run_routinator
|
|
|
|
- name: Ensure routinator is installed
|
|
ansible.builtin.apt:
|
|
name:
|
|
- routinator
|
|
state: present
|
|
update_cache: true
|
|
when: rpki.run_routinator is defined and rpki.run_routinator
|