diff options
author | Davide Viti <zinosat@tiscali.it> | 2013-11-25 10:03:23 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-25 10:41:19 +0100 |
commit | 12da132c2bc6e980abe22ea4d4edfd1792dd5845 (patch) | |
tree | 0e8dc2bd546a85b5162d2a2eb6389b6f1900da4d | |
parent | efc35794c8706e376c5dbf49e0a33217a2f515ff (diff) | |
download | buildroot-12da132c2bc6e980abe22ea4d4edfd1792dd5845.tar.gz buildroot-12da132c2bc6e980abe22ea4d4edfd1792dd5845.zip |
mongoose: S85mongoose: fix default options
mongoose fails to start because the options used are not supported by
mongoose. Fix it by using the correct option names instead.
[Peter: reworded commit text and use the correct long options instead]
Signed-off-by: Davide Viti <d.viti@infosolution.it>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rwxr-xr-x | package/mongoose/S85mongoose | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mongoose/S85mongoose b/package/mongoose/S85mongoose index e9e8524ca8..ff7da05b08 100755 --- a/package/mongoose/S85mongoose +++ b/package/mongoose/S85mongoose @@ -10,7 +10,7 @@ NAME=mongoose DESC="Mongoose HTTP server" DAEMON=`which mongoose` -OPTIONS="-max_threads 3 -root /var/www -ports 80" +OPTIONS="-num_threads 3 -document_root /var/www -listening_ports 80" [ -e /etc/default/mongoose ] && . /etc/default/mongoose |