git: ae2c6a5f4e52 - main - net/bird2: Update to 2.17.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 08 Sep 2025 00:43:16 UTC
The branch main has been updated by olivier: URL: https://cgit.FreeBSD.org/ports/commit/?id=ae2c6a5f4e5226b9fb7c269fe4143a5c0992eb45 commit ae2c6a5f4e5226b9fb7c269fe4143a5c0992eb45 Author: Olivier Cochard <olivier@FreeBSD.org> AuthorDate: 2025-09-08 00:37:10 +0000 Commit: Olivier Cochard <olivier@FreeBSD.org> CommitDate: 2025-09-08 00:42:56 +0000 net/bird2: Update to 2.17.2 Additionally, address some fixes from older PRs: - Modify rcorder to start sooner, enabling other daemons that rely on network access to start correctly. - Introduce gracefulrestart as an additional rc command. PR: 282565 PR: 240732 Sponsored by: Netflix --- net/bird2/Makefile | 6 +++--- net/bird2/distinfo | 6 +++--- net/bird2/files/bird.in | 6 +++++- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/net/bird2/Makefile b/net/bird2/Makefile index cd79c33d782c..308eb8a9324b 100644 --- a/net/bird2/Makefile +++ b/net/bird2/Makefile @@ -1,12 +1,12 @@ PORTNAME= bird -DISTVERSION= 2.17.1 +DISTVERSION= 2.17.2 CATEGORIES= net -MASTER_SITES= https://bird.network.cz/download/ +MASTER_SITES= https://bird.nic.cz/download/ PKGNAMESUFFIX= 2 MAINTAINER= olivier@FreeBSD.org COMMENT= Dynamic IP routing daemon -WWW= https://bird.network.cz/ +WWW= https://bird.nic.cz/ LICENSE= GPLv2 diff --git a/net/bird2/distinfo b/net/bird2/distinfo index 9c8173f95b91..f98db37247e3 100644 --- a/net/bird2/distinfo +++ b/net/bird2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746480313 -SHA256 (bird-2.17.1.tar.gz) = bfd718dfa596819b3801688783212514b467163329aec9bbcd0fa3dee03e10e9 -SIZE (bird-2.17.1.tar.gz) = 1471008 +TIMESTAMP = 1757289112 +SHA256 (bird-2.17.2.tar.gz) = 440dd2d3aca64323b46fd45532e573accaf8bdde639ee4bfcd68ea9b13328cdd +SIZE (bird-2.17.2.tar.gz) = 1499113 diff --git a/net/bird2/files/bird.in b/net/bird2/files/bird.in index de800bd69b81..91932c656db9 100644 --- a/net/bird2/files/bird.in +++ b/net/bird2/files/bird.in @@ -1,7 +1,7 @@ #!/bin/sh # PROVIDE: bird dynamicrouting -# REQUIRE: LOGIN +# REQUIRE: DAEMONS # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf @@ -27,4 +27,8 @@ load_rc_config $name command=%%PREFIX%%/sbin/${name} command_args="-c $bird_config -g $bird_group" +extra_commands="gracefulrestart" # It is not a restart but a stop + +gracefulrestart_cmd="%%PREFIX%%/sbin/${name}c graceful restart" + run_rc_command "$1"