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
redhat-init
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
- # chkconfig: 2345 85 20
- # description: WWW proxy allowing offline view of cached pages
- # =============================================================================
- #
- # Description:
- # This shell script takes care of starting and stopping wwwoffled.
- #
- # Author[s]:
- # Gianpaolo Macario gianpi@geocities.com
- # Peter Stamfest Peter.Stamfest@vws.or.at
- #
- # Revision History:
- # 11-NOV-1998 peter Added chkconfig support, restart and status
- # options, changed usage message (stripped the
- # ".init")
- # 21-JUL-1997 gianpi Configured for wwwoffle-1.2c
- # 10-MAR-1997 gianpi Initial writing
- # =============================================================================
- # Source function library.
- . /etc/rc.d/init.d/functions
- # Source networking configuration.
- . /etc/sysconfig/network
- # Check that networking is up.
- [ ${NETWORKING} = "no" ] && exit 0
- [ -f /usr/local/sbin/wwwoffled ] || exit 0
- # See how we were called.
- case "$1" in
- start)
- # Start daemons.
- echo -n "Starting wwwoffled: "
- daemon /usr/local/sbin/wwwoffled -c /etc/wwwoffle.conf
- echo
- ;;
- stop)
- # Stop daemons.
- echo -n "Shutting down wwwoffled: "
- killproc wwwoffled
- echo "done"
- ;;
- restart)
- echo -n "Restarting wwwoffled: "
- killproc wwwoffled -HUP
- echo
- ;;
- status)
- status wwwoffled
- ;;
- *)
- echo "Usage: wwwoffle {start|stop|restart|status}"
- exit 1
- esac
- exit 0
- # === End of File ===