Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
debian-start-stop1
Package: wwwoffle-2.5e.tgz [view]
Upload User: seven77cht
Upload Date: 2007-01-04
Package Size: 486k
Code Size: 1k
Category:
Browser Client
Development Platform:
Unix_Linux
- #! /bin/sh
- # wwwoffled script to go e.g., into /etc/init.d/ scripts.
- #
- # Modified by Joerg Wittenberger <joerg.wittenberger@pobox.com>
- # from skeleton
- # file by Miquel van Smoorenburg <miquels@cistron.nl>.
- # Modified for Debian GNU/Linux
- # by Ian Murdock <imurdock@gnu.ai.mit.edu>.
- #
- PATH=/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin
- NAME=wwwoffled
- DAEMON=/usr/sbin/$NAME
- test -f $DAEMON || exit 0
- set -e
- case "$1" in
- start)
- start-stop-daemon --start --verbose --pidfile /var/run/$NAME.pid --exec $DAEMON &
- ;;
- stop)
- start-stop-daemon --stop --verbose --pidfile /var/run/$NAME.pid --exec $DAEMON
- ;;
- reload)
- # echo "Reloading $NAME configuration files"
- # start-stop-daemon --stop --signal 1 --quiet --pidfile /var/run/$NAME.pid --exec $DAEMON
- ;;
- *)
- # echo "Usage: /etc/init.d/$NAME {start|stop|reload}"
- echo "Usage: /etc/init.d/$NAME {start|stop}"
- exit 1
- ;;
- esac
- exit 0