Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > 8be6037386587b10308712ae27d1e55f > files > 2

ziproxy-3.3.1-3.mga7.x86_64.rpm

#!/usr/bin/bash
#
# ziproxy	This shell script takes care of starting and stopping ziproxy.
#
# chkconfig: - 86 14
# description: A http compression and optimizer, non-caching, fully configurable proxy.
# probe: false
# processname: ziproxy
# pidfile: /run/ziproxy/ziproxy.pid
# config: /etc/sysconfig/ziproxy
### BEGIN INIT INFO
# Provides: ziproxy
# Required-Start: $network
# Required-Stop: $network
# Default-Start: 3 4 5
# Short-Description: A http compression and optimizer, non-caching, fully configurable proxy.
# Description: A http compression and optimizer, non-caching, fully configurable proxy.
### END INIT INFO

# 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/sbin/ziproxy ] || exit 0

[ -f /etc/sysconfig/ziproxy ] && . /etc/sysconfig/ziproxy

# See how we were called.
case "$1" in
  start)
	if [ -n "`/sbin/pidof ${ZIPROXY_DAEMON:-"ziproxy"}`" ]; then
            gprintf "${ZIPROXY_DAEMON:-"ziproxy"}: already running"
	    RETVAL=$?
	    echo
	    exit $RETVAL
        fi
	gprintf "Starting ziproxy: "
	daemon ${ZIPROXY_DAEMON:-"ziproxy"} -d \
	${ZIPROXY_CONFIGFILE:-"-c /etc/ziproxy/ziproxy.conf"} \
	${ZIPROXY_OPTIONS:-""} | head -1 > ${ZIPROXY_PID:-"/run/ziproxy/ziproxy.pid"}
	RETVAL=$?
	[ $RETVAL -eq 0 ] && success || failure
	echo
	[ $RETVAL -eq 0 ] && touch /var/lock/subsys/ziproxy
	;;
  stop)
	gprintf "Stopping ziproxy: "
	killproc -p ${ZIPROXY_PID:-"/run/ziproxy/ziproxy.pid"} ${ZIPROXY_DAEMON:-"ziproxy"}
	RETVAL=$?
	echo
	[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ziproxy ${ZIPROXY_PID:-"/run/ziproxy/ziproxy.pid"}
	;;
  status)
	status ${ZIPROXY_DAEMON:-"ziproxy"}
	RETVAL=$?
	;;
  restart|reload)
	$0 stop
	$0 start
	RETVAL=$?
	;;
  *)
	gprintf "Usage: ziproxy {start|stop|status|restart|condrestart|reload}\n"
	exit 1
esac

exit $RETVAL