From 0fd4ed1d3e64ef554f46f2121ecc5f56b4b6977d Mon Sep 17 00:00:00 2001 From: Stijn Tintel Date: Wed, 27 Apr 2022 11:20:26 +0300 Subject: [PATCH] bird2: stop service early The bird service needs to stop before network is stopped, otherwise it might not be able to cleanly terminate its sessions. Introduce STOP=10 as is used in the bird1 init scripts. Signed-off-by: Stijn Tintel --- bird2/Makefile | 2 +- bird2/files/bird.init | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bird2/Makefile b/bird2/Makefile index 9fee377..e8ee8f2 100644 --- a/bird2/Makefile +++ b/bird2/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=bird2 PKG_VERSION:=2.0.8 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=bird-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=ftp://bird.network.cz/pub/bird diff --git a/bird2/files/bird.init b/bird2/files/bird.init index 5f7a442..3ac7be1 100644 --- a/bird2/files/bird.init +++ b/bird2/files/bird.init @@ -3,6 +3,7 @@ USE_PROCD=1 START=70 +STOP=10 BIRD_BIN="/usr/sbin/bird" BIRD_CONF="/etc/bird.conf"