summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/lighttpd/files/lighttpd
diff options
context:
space:
mode:
authorValentin Popa <valentin.popa@intel.com>2013-11-22 12:01:46 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-22 14:06:42 +0000
commit1d376b40552e60b1fd18d95c6dd24d30aae849c8 (patch)
treed7a72b5c82dd5ad6239760ac1518d0ae58e105e6 /meta/recipes-extended/lighttpd/files/lighttpd
parentb0da7ccde5380726acfccf1a96cdf5560edf9159 (diff)
downloadopenembedded-core-contrib-1d376b40552e60b1fd18d95c6dd24d30aae849c8.tar.gz
lighttpd: upgrade to 1.4.33
Signed-off-by: Valentin Popa <valentin.popa@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lighttpd/files/lighttpd')
-rw-r--r--meta/recipes-extended/lighttpd/files/lighttpd34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-extended/lighttpd/files/lighttpd b/meta/recipes-extended/lighttpd/files/lighttpd
deleted file mode 100644
index bf89a60b7d..0000000000
--- a/meta/recipes-extended/lighttpd/files/lighttpd
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/lighttpd
-NAME=lighttpd
-DESC="Lighttpd Web Server"
-OPTS="-f /etc/lighttpd.conf"
-
-case "$1" in
- start)
- echo -n "Starting $DESC: "
- start-stop-daemon --start -x "$DAEMON" -- $OPTS
- echo "$NAME."
- ;;
- stop)
- echo -n "Stopping $DESC: "
- start-stop-daemon --stop -x "$DAEMON"
- echo "$NAME."
- ;;
- restart|force-reload)
- echo -n "Restarting $DESC: "
- start-stop-daemon --stop -x "$DAEMON"
- sleep 1
- start-stop-daemon --start -x "$DAEMON" -- $OPTS
- echo "$NAME."
- ;;
- *)
- N=/etc/init.d/$NAME
- echo "Usage: $N {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0