diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-09-14 22:53:42 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-09-14 22:53:42 +0000 |
commit | 74c51811c824a96e16e009bf24ffc55ff6ed5357 (patch) | |
tree | a0440b1bf4b7f98f29286e6d6f5062e2d5af0233 /contrib | |
parent | 5872bfa084797e903b5ba1a722c22938a6a9cc95 (diff) |
* luci/contrib/olsr: fix initscript stop action
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/package/olsrd-luci/files/etc/init.d/olsrd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/package/olsrd-luci/files/etc/init.d/olsrd b/contrib/package/olsrd-luci/files/etc/init.d/olsrd index 54f5502bf..c94c2a31a 100755 --- a/contrib/package/olsrd-luci/files/etc/init.d/olsrd +++ b/contrib/package/olsrd-luci/files/etc/init.d/olsrd @@ -562,12 +562,12 @@ start() { [ -z "$OLSRD_CONFIG_FILE" ] && return 1 ### start olsrd - start-stop-daemon -b -m -p $PID -x $BIN -S -- -f $CONF -nofork + start-stop-daemon -q -b -m -p $PID -x $BIN -S -- -f $CONF -nofork } stop() { ### stop olsrd - start-stop-daemon -q -p $PID -a ${BIN##*/} -K + start-stop-daemon -q -p $PID -x $BIN -K } restart() { |