diff options
author | uvok cheetah | 2024-05-26 14:32:34 +0200 |
---|---|---|
committer | uvok cheetah | 2024-05-26 14:32:34 +0200 |
commit | 06193847edffda082d8873d2487012eac4db5533 (patch) | |
tree | baa2b8fcfee8c5673fcdeb68d2189f1acdde23a8 /roles/uvok_bird/tasks | |
parent | b0f8f2d3ad3e981013a3e5c83edf727fbc926aa1 (diff) |
bird: Add route table files
Diffstat (limited to 'roles/uvok_bird/tasks')
-rw-r--r-- | roles/uvok_bird/tasks/main.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/roles/uvok_bird/tasks/main.yml b/roles/uvok_bird/tasks/main.yml index 942ad06..db9c64f 100644 --- a/roles/uvok_bird/tasks/main.yml +++ b/roles/uvok_bird/tasks/main.yml @@ -1,5 +1,24 @@ --- # tasks file for uvok_bird +- name: Ensure route/table definitions exists + ansible.builtin.file: + path: '{{ uvok_bird_route_file }}' + state: touch + mode: '0750' + owner: 'root' + group: 'root' +- name: Add route/table definitions + lineinfile: + path: '{{ uvok_bird_route_file }}' + state: present + search_string: "150" + line: "150\tas{{ uvok_bird_opts.clear_as }}" +- name: Add route/table definitions + lineinfile: + path: '{{ uvok_bird_route_file }}' + state: present + search_string: "100" + line: "100\tas{{ uvok_bird_opts.clear_as }}_out" - name: Install routing software package: name: |