From: Jo-Philipp Wich Date: Mon, 7 Feb 2022 18:01:04 +0000 (+0100) Subject: init: fix boot action in init script X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=ac99eba7d39c2ba8fa0c5335ea1e8943d8885c24;p=project%2Ffirewall4.git 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 --- 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 }