#! /bin/sh
#
# varnishlog Control the Varnish logging daemon
#
# chkconfig: - 90 10
# description: Varnish Cache logging daemon
# processname: varnishlog
# config: 
# pidfile: /opt/rh/rh-varnish4/root/var/run/rh-varnish4-varnish/varnishlog.pid

### BEGIN INIT INFO
# Provides: varnishlog
# Required-Start: $network $local_fs $remote_fs
# Required-Stop: $network $local_fs $remote_fs
# Default-Start:
# Default-Stop:
# Short-Description: start and stop varnishlog
# Description: Varnish Cache logging daemon
### END INIT INFO

# Source function library.
. /etc/init.d/functions

retval=0
pidfile="/opt/rh/rh-varnish4/root/var/run/rh-varnish4-varnish/varnishlog.pid"
lockfile="/opt/rh/rh-varnish4/root/var/lock/subsys/varnishlog"
logfile="/opt/rh/rh-varnish4/root/var/log/varnish/varnish.log"

exec="/opt/rh/rh-varnish4/root/usr/bin/varnishlog"
prog="varnishlog"

DAEMON_OPTS="-a -w $logfile -D -P $pidfile"

# Include varnishlog defaults
[ -e /opt/rh/rh-varnish4/root/etc/sysconfig/varnishlog ] && . /opt/rh/rh-varnish4/root/etc/sysconfig/varnishlog

start() {

	if [ ! -x $exec ]
	then
		echo $exec not found
		exit 5
	fi

	echo -n "Starting varnish logging daemon: "

	daemon --pidfile $pidfile $exec "$DAEMON_OPTS" 
	echo
	return $retval
}

stop() {
	echo -n "Stopping varnish logging daemon: "
	killproc -p $pidfile $prog
	retval=$?
	echo
	[ $retval -eq 0 ] && rm -f $lockfile
	return $retval
}

restart() {
	stop
	start
}

reload() {
	restart
}

force_reload() {
	restart
}

rh_status() {
	status -p $pidfile $prog
}

rh_status_q() {
	rh_status >/dev/null 2>&1
}

# See how we were called.
case "$1" in
	start)
		rh_status_q && exit 0
		$1
		;;
	stop)
		rh_status_q || exit 0
		$1
		;;
	restart)
		$1
		;;
	reload)
		rh_status_q || exit 7
		$1
		;;
	force-reload)
		force_reload
		;;
	status)
		rh_status
		;;
	condrestart|try-restart)
		rh_status_q || exit 0
		restart
		;;
	*)
	echo "Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"

	exit 2
esac

exit $?

