net/frr: sync with master

This commit is contained in:
Franco Fichtner 2026-01-23 12:44:27 +01:00
parent 01a7c36dd4
commit bc76f27505
3 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,6 @@
PLUGIN_NAME= frr
PLUGIN_VERSION= 1.50
PLUGIN_REVISION= 1
PLUGIN_COMMENT= The FRRouting Protocol Suite
PLUGIN_DEPENDS= frr10-pythontools
PLUGIN_MAINTAINER= ad@opnsense.org

View file

@ -18,6 +18,7 @@ Plugin Changelog
* Fix watchfrr service handling (contributed by Andy Binder) (opnsense/plugins/pull/4712 and 5132)
* Add capability support for BGP neighbors (contributed by Shelldog95) (opnsense/plugins/pull/5128)
* Prevent errors in diagnostics view when a frr daemon is not started (opnsense/plugins/pull/5119)
* Fix CARP hook service start hang (opnsense/plugins/pull/5160)
1.49

View file

@ -49,7 +49,8 @@ if (frr_carp_enabled()) {
switch ($type) {
case 'MASTER':
mwexecfm('/usr/local/etc/rc.d/frr start');
// XXX: This will stall if stdout is not redirected
mwexecfm('/usr/local/etc/rc.d/frr start > /dev/null');
break;
case 'BACKUP':
mwexecfm('/usr/local/etc/rc.d/frr stop');