diff options
| author | Jo-Philipp Wich | 2022-02-07 18:01:04 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2022-02-07 18:01:30 +0000 |
| commit | ac99eba7d39c2ba8fa0c5335ea1e8943d8885c24 (patch) | |
| tree | 229ff4988c53d54940ce9671263fc570c77ff588 | |
| parent | b54f462272c3a68a1a733a9037dc7c109c54499d (diff) | |
| download | firewall4-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-x | root/etc/init.d/firewall | 2 |
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 } |