diff options
| author | Davide Viti <zinosat@tiscali.it> | 2015-12-14 22:44:54 +0100 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-12-29 22:43:43 +0100 |
| commit | 9860746ff98a886dbdbccf769d89d73a0d5ad636 (patch) | |
| tree | d2d9c3245b60c7d90213866e0651ad05faeb7707 /package/mongoose/S85mongoose | |
| parent | 225189803d9ecb07aef3f7f016376c7eb00dc44d (diff) | |
| download | buildroot-9860746ff98a886dbdbccf769d89d73a0d5ad636.tar.gz buildroot-9860746ff98a886dbdbccf769d89d73a0d5ad636.zip | |
mongoose: bump to version 6.1
- provide only libmongoose.a
- rework package description
[Peter: move under Libraries->Networking]
Signed-off-by: Davide Viti <zinosat@tiscali.it>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/mongoose/S85mongoose')
| -rwxr-xr-x | package/mongoose/S85mongoose | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/package/mongoose/S85mongoose b/package/mongoose/S85mongoose deleted file mode 100755 index 9f24e06999..0000000000 --- a/package/mongoose/S85mongoose +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh -# -# Start/stop the mongoose HTTP server -# - -set -e - -PATH=/sbin:/bin:/usr/sbin:/usr/bin -NAME=mongoose -DESC="Mongoose HTTP server" - -DAEMON=`which mongoose` -OPTIONS="-document_root /var/www -listening_port 80" - -[ -e /etc/default/mongoose ] && . /etc/default/mongoose - -case "$1" in - start) - echo "Starting $DESC:" - start-stop-daemon -S -x "$DAEMON" -b -- $OPTIONS - echo "$NAME." - ;; - stop) - printf "Stopping $DESC: " - start-stop-daemon -K -x "$DAEMON" - echo "$NAME." - ;; - restart|force-reload) - printf "Restarting $DESC: " - start-stop-daemon -K -x "$DAEMON" - sleep 1 - start-stop-daemon -S -x "$DAEMON" -b -- $OPTIONS - echo "$NAME." - ;; - *) - echo "Usage: $0 {start|stop|restart|force-reload}" >&2 - exit 1 - ;; -esac - -exit 0 |

