diff options
author | Karel Kočí <karel.koci@nic.cz> | 2019-02-18 18:05:50 +0100 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2019-02-18 18:05:50 +0100 |
commit | f28843337fbad82009cc28ad182a405e95fb939a (patch) | |
tree | a8bab0ac6de76515d37d233f0421128421d02d4e /bigclown-gateway/files | |
parent | fb3d65bf92084ce62173c6c83365445d42efc043 (diff) | |
download | openwrt-personal-pkgs-f28843337fbad82009cc28ad182a405e95fb939a.tar.gz openwrt-personal-pkgs-f28843337fbad82009cc28ad182a405e95fb939a.tar.bz2 openwrt-personal-pkgs-f28843337fbad82009cc28ad182a405e95fb939a.zip |
bigclown-gateway: Fix invalid switch in init script
Diffstat (limited to 'bigclown-gateway/files')
-rwxr-xr-x | bigclown-gateway/files/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bigclown-gateway/files/init b/bigclown-gateway/files/init index 47c12b9..37ddd0d 100755 --- a/bigclown-gateway/files/init +++ b/bigclown-gateway/files/init @@ -47,7 +47,7 @@ start_service() { procd_open_instance procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5} - procd_set_param command "$PROG" -c "$CONF" -W + procd_set_param command "$PROG" -c "$CONF" procd_set_param stdout 1 procd_set_param stderr 1 procd_close_instance |