summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJo-Philipp Wich2022-02-07 18:01:04 +0000
committerJo-Philipp Wich2022-02-07 18:01:30 +0000
commitac99eba7d39c2ba8fa0c5335ea1e8943d8885c24 (patch)
tree229ff4988c53d54940ce9671263fc570c77ff588
parentb54f462272c3a68a1a733a9037dc7c109c54499d (diff)
downloadfirewall4-ac99eba7d39c2ba8fa0c5335ea1e8943d8885c24.tar.gz
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 <jo@mein.io>
-rwxr-xr-xroot/etc/init.d/firewall2
1 files changed, 1 insertions, 1 deletions
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
}