This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via ee08f7aea1f9414bf13ff929a2236d747e7e6546 (commit) via 56d32cbe9150302ec5516c0c66f8c36aaa0a38a2 (commit) via 7c6b05dfb8a5270a8434f9304ea5b44f6d59da94 (commit) via 0972da95bf50e4528d09097c23673779aaf7a634 (commit) from bd49143228a4c79b8d70edb7ab3922b4d86336fc (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit ee08f7aea1f9414bf13ff929a2236d747e7e6546 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Mar 30 12:14:51 2024 +0000
frr: Bump release version
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 56d32cbe9150302ec5516c0c66f8c36aaa0a38a2 Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Mar 28 17:41:12 2024 +0000
frr: Update reloading all services
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 7c6b05dfb8a5270a8434f9304ea5b44f6d59da94 Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Mar 28 17:41:11 2024 +0000
frr: Start the management daemon, too
This daemon is running the configuration validation and required to run at all times.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 0972da95bf50e4528d09097c23673779aaf7a634 Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Mar 28 17:41:10 2024 +0000
protobuf-c: Ship libraries
FRR links against this and fails to start without.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/common/protobuf-c | 4 ++-- lfs/frr | 2 +- src/initscripts/packages/frr | 9 ++++++--- 3 files changed, 9 insertions(+), 6 deletions(-)
Difference in files: diff --git a/config/rootfiles/common/protobuf-c b/config/rootfiles/common/protobuf-c index 56e6a2362..aed0319db 100644 --- a/config/rootfiles/common/protobuf-c +++ b/config/rootfiles/common/protobuf-c @@ -8,6 +8,6 @@ #usr/lib/libprotobuf-c.a #usr/lib/libprotobuf-c.la #usr/lib/libprotobuf-c.so -#usr/lib/libprotobuf-c.so.1 -#usr/lib/libprotobuf-c.so.1.0.0 +usr/lib/libprotobuf-c.so.1 +usr/lib/libprotobuf-c.so.1.0.0 #usr/lib/pkgconfig/libprotobuf-c.pc diff --git a/lfs/frr b/lfs/frr index f0954aae5..ea5a6b9e9 100644 --- a/lfs/frr +++ b/lfs/frr @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = frr -PAK_VER = 8 +PAK_VER = 9
DEPS =
diff --git a/src/initscripts/packages/frr b/src/initscripts/packages/frr index 867c4b98d..22cf2f7aa 100644 --- a/src/initscripts/packages/frr +++ b/src/initscripts/packages/frr @@ -22,7 +22,7 @@ . /etc/sysconfig/rc . ${rc_functions}
-DAEMONS="zebra bgpd ospfd staticd" +DAEMONS="mgmtd zebra bgpd ospfd staticd"
case "${1}" in start) @@ -51,8 +51,11 @@ case "${1}" in ;;
reload) - boot_mesg "Reloading FRRouting..." - reloadproc /usr/sbin/frr-reload + # Reload all daemons + for daemon in ${DAEMONS}; do + boot_mesg "Reloading FRRouting ${daemon}..." + reloadproc "/usr/sbin/${daemon}" + done ;;
restart)
hooks/post-receive -- IPFire 2.x development tree