diff options
author | uvok cheetah | 2024-06-23 12:41:33 +0200 |
---|---|---|
committer | uvok cheetah | 2024-06-23 12:41:33 +0200 |
commit | 902aa734d6cfdee49a443d6adbb67cb0480d6dd2 (patch) | |
tree | 372045feb77a297b8077d392c3a7d9dbe3e3e109 /roles | |
parent | 0082293fbbc55b99c652813ffb0917a557858cb2 (diff) |
bird: Get rid of fallback
use push rather than pull
Diffstat (limited to 'roles')
-rw-r--r-- | roles/uvok_bird/defaults/main.yml | 1 | ||||
-rw-r--r-- | roles/uvok_bird/templates/clearnet.conf.j2 | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/roles/uvok_bird/defaults/main.yml b/roles/uvok_bird/defaults/main.yml index 232f0ef..4934326 100644 --- a/roles/uvok_bird/defaults/main.yml +++ b/roles/uvok_bird/defaults/main.yml @@ -4,7 +4,6 @@ uvok_bird_opts: config_dir: "/tmp/bird/" clearnet: false dn42: false - use_fallback: false preferred_ip: "::1" clear_prefixes: [] babel_if_names: [] diff --git a/roles/uvok_bird/templates/clearnet.conf.j2 b/roles/uvok_bird/templates/clearnet.conf.j2 index 62b699d..ac7af56 100644 --- a/roles/uvok_bird/templates/clearnet.conf.j2 +++ b/roles/uvok_bird/templates/clearnet.conf.j2 @@ -167,17 +167,9 @@ protocol kernel pk_myas_out { if (source = RTS_STATIC) then { accept; } -{% if uvok_bird_opts.use_fallback %} - if (proto = "myas_def_fallb") then { - accept; - } -{% endif %} reject; }; }; }; include "/etc/bird/clear_peers/*.conf"; -{% if uvok_bird_opts.use_fallback %} -include "clear_fallback.conf"; -{% endif %} |