bird: Remove obsolete role

This commit is contained in:
Timo Makinen 2023-04-28 15:52:40 +00:00
parent f81560df0a
commit fe1feb61d1
3 changed files with 0 additions and 46 deletions

View file

@ -1,5 +0,0 @@
---
- name: Restart bird
ansible.builtin.service:
name: bird
state: restarted

View file

@ -1,20 +0,0 @@
---
- name: Install packages
ansible.builtin.package:
name: bird%2
state: installed
- name: Copy IPv4 config
ansible.builtin.template:
dest: /etc/bird.conf
src: bird.conf.j2
mode: 0600
owner: root
group: "{{ ansible_wheel }}"
notify: Restart bird
- name: Start services
ansible.builtin.service:
name: bird
state: started
enabled: true

View file

@ -1,21 +0,0 @@
log syslog all;
debug protocols off;
router id from "tap0";
protocol device {
scan time 10;
}
protocol ospf {
area 0.0.0.0 {
interface "tap0" {
hello 1;
dead 30;
real broadcast yes;
};
interface "carp145" {
stub;
};
};
}