summaryrefslogtreecommitdiffstats
path: root/network/thttpd/rc.thttpd
diff options
context:
space:
mode:
author Robby Workman2011-03-14 22:16:10 +0100
committer Robby Workman2011-03-14 22:16:10 +0100
commit43e17f44b22c85caf2bf9278db6b940dc3a93f2b (patch)
tree8b113755e3bed1889de73e81512559b64386c9ac /network/thttpd/rc.thttpd
parenta7ea463fff1c1d11c4d6596bfa7b56f96c78dc95 (diff)
downloadslackbuilds-43e17f44b22c85caf2bf9278db6b940dc3a93f2b.tar.gz
network/thttpd: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006576.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/thttpd/rc.thttpd')
-rw-r--r--network/thttpd/rc.thttpd63
1 files changed, 0 insertions, 63 deletions
diff --git a/network/thttpd/rc.thttpd b/network/thttpd/rc.thttpd
deleted file mode 100644
index 20187b116c..0000000000
--- a/network/thttpd/rc.thttpd
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/sh
-
-# Start/stop/restart the thttpd daemon
-# Copyright (c) 2009 Antonio Hernández Blas <hba.nihilismus@gmail.com>
-
-CONF='/etc/thttpd.conf'
-CMMD="/usr/sbin/thttpd -C $CONF"
-
-thttpd_start() {
- if [ -x /usr/sbin/thttpd ]; then
- if [ -f $CONF ]; then
- PIDOF=$(pgrep -f "$CMMD")
- if [ ! -z "$PIDOF" ]; then
- echo "Error, thttpd is already running."
- else
- echo "Starting thttpd: $CMMD"
- $CMMD
- fi
- else
- echo "Error, file $CONF does not exist."
- fi
- fi
-}
-
-thttpd_stop() {
- THTTPDPID=$(pgrep -f "$CMMD")
- if [ -z $THTTPDPID ]; then
- echo "Error, thttpd is not running."
- else
- echo "Stoping thttpd: kill $THTTPDPID"
- kill $THTTPDPID
- fi
-}
-
-thttpd_status() {
- PIDOF=$(pgrep -f "$CMMD")
- if [ ! -z "$PIDOF" ]; then
- echo "thttpd is running."
- else
- echo "thttpd is not running."
- fi
-}
-
-case $1 in
- start)
- thttpd_start
- ;;
- stop)
- thttpd_stop
- ;;
- restart)
- thttpd_stop
- sleep 3
- thttpd_start
- ;;
- status)
- thttpd_status
- ;;
- *)
- echo "Usage $0 {start|stop|restart|status}"
- exit 1
- ;;
-esac