From ac99eba7d39c2ba8fa0c5335ea1e8943d8885c24 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 7 Feb 2022 19:01:04 +0100 Subject: [PATCH] init: fix boot action in init script We need to call `start()` instead of `start_service()` from `boot()` in order to properly register the firewall service. Signed-off-by: Jo-Philipp Wich --- root/etc/init.d/firewall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/init.d/firewall b/root/etc/init.d/firewall index f4bdd99..b555a63 100755 --- a/root/etc/init.d/firewall +++ b/root/etc/init.d/firewall @@ -28,5 +28,5 @@ boot() { # Be silent on boot, firewall might be started by hotplug already, # so don't complain in syslog. QUIET=-q - start_service + start } -- 2.30.2