mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-09 00:42:34 -04:00
net/frr: sync with master
This commit is contained in:
parent
01a7c36dd4
commit
bc76f27505
3 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue