15 lines
311 B
YAML
15 lines
311 B
YAML
- name: Copy Bird Config
|
|
ansible.builtin.template:
|
|
src: bird.conf.j2
|
|
dest: /etc/bird/bird.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
|
|
- name: Copy Bird6 Config
|
|
ansible.builtin.template:
|
|
src: bird6.conf.j2
|
|
dest: /etc/bird/bird6.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644' |