thttpd: remove unused files

Patch by Simon Pasch
This commit is contained in:
Peter Korsgaard 2008-04-01 14:50:40 +00:00
parent 18932cb003
commit fd4c4ad6ec
2 changed files with 0 additions and 50 deletions

View File

@ -1,43 +0,0 @@
#!/bin/sh
DAEMON=/usr/sbin/thttpd
test -f $DAEMON || exit 0
start() {
echo -n "Starting thttpd: "
$DAEMON -C /etc/thttpd.conf
if [ $? != 0 ]; then
echo "FAILED"
exit 1
else
echo "done"
fi
}
stop() {
echo -n "Stopping ProFTPD: "
kill -9 `cat /var/run/thttpd.pid`
echo "done"
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo "Usage: /etc/init.d/S90thttpd {start|stop|restart}"
exit 1
;;
esac
exit 0

View File

@ -1,7 +0,0 @@
chroot
dir=/var/www
pidfile=/var/run/thttpd.pid
logfile=/var/log/thttpd
host=dtu-7100
user=nobody
cgipat=**.cgi