netbird: update to 0.53.0 with config fix
authorWesley Gimenes <[email protected]>
Wed, 6 Aug 2025 19:51:56 +0000 (16:51 -0300)
committerWesley Gimenes <[email protected]>
Wed, 10 Sep 2025 22:09:49 +0000 (19:09 -0300)
changelog: https://github.com/netbirdio/netbird/releases/tag/v0.53.0

Update init file to include `NB_CONFIG="/etc/netbird/config.json"`
variable, ensuring configuration compatibility as before (fixes issue
introduced by profiles feature in 0.52.2). Existing configurations remain
compatible.

Note: license for some components (`management`, `relay`, `signal`) changed
to **AGPLv3**. These components aren't packaged for OpenWrt, so there's no
immediate effect, but record the change for future reference.

Signed-off-by: Wesley Gimenes <[email protected]>
net/netbird/Makefile
net/netbird/files/netbird.init

index 53947ca5663a8460bf8840302bdc493de8711ce3..fe21b4d04a4bc14827df55ab8c6d79b76f3f4794 100644 (file)
@@ -1,12 +1,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=netbird
-PKG_VERSION:=0.52.2
+PKG_VERSION:=0.53.0
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://codeload.github.com/netbirdio/netbird/tar.gz/v$(PKG_VERSION)?
-PKG_HASH:=0c798932bed1b1c2dbe1de692efad7f60c875caee2da9fa797de5b4740b8a0e5
+PKG_HASH:=47dde2b5b8fcb488bd6aa9aab769efb45ca4c1cc21253d44f7a68b44e7aeda8a
 
 PKG_MAINTAINER:=Wesley Gimenes <[email protected]>
 PKG_LICENSE:=BSD-3-Clause
index b7ccd2d4b253e70b3c5a96a704ec6ba7d857e3e8..b5a0930c5a403e059be968caf716c7bb4c6551ab 100755 (executable)
@@ -8,6 +8,7 @@ USE_PROCD=1
 start_service() {
        procd_open_instance
        procd_set_param command /usr/bin/netbird
+       procd_set_param env NB_CONFIG="/etc/netbird/config.json"
        procd_append_param command service run
        procd_set_param pidfile /var/run/netbird.pid
        procd_close_instance