#! /bin/sh
# Copyright (c) 2007, Novell Inc.
#
# Author: Adrian Schroeter <adrian@suse.de>
#         Martin Mohring <martin.mohring@5etech.eu>
#         Susanne Oberhauser  <froh@novell.com>
#
# /etc/init.d/obspublisher
#   and its symbolic  link
# /usr/sbin/rcobspublisher
#
### BEGIN INIT INFO
# Provides:          obspublisher
# Required-Start:    $time $syslog
# Should-Start:      obssrcserver obsrepserver obsscheduler
# Should-Stop:       $none
# Required-Stop:     $null
# Default-Start:     3 5
# Default-Stop:      0 1 2 4 6
# Description:       open build service repository publisher
### END INIT INFO

. /etc/rc.status

. /etc/sysconfig/obs-server

# Determine the base and follow a runlevel link name.
base=${0##*/}
link=${base#*[SK][0-9][0-9]}

if [ -z "$OBS_RUN_DIR" ]; then
        OBS_RUN_DIR="/srv/obs/run"
fi

if [ -z "$OBS_LOG_DIR" ]; then
        OBS_LOG_DIR="/srv/obs/log"
fi

if [ -n "$OBS_BACKENDCODE_DIR" ]; then
        obsdir="$OBS_BACKENDCODE_DIR"
else
        obsdir=/usr/lib/obs/server/
fi
rundir="$OBS_RUN_DIR"
logdir="$OBS_LOG_DIR"

rc_reset
case "$1" in
	start)
		echo -n "Initializing obspublisher"
                # FIXME: not nice, this should receive a proper daemon handling, 
                #        including real logging, pid file and startproc
		startproc -f -l "$logdir"/publisher.log \
		    "$obsdir"/bs_publish
		rc_status -v
	;;
	stop)
		echo -n "Shutting down obspublisher"
		"$obsdir"/bs_publish --stop
		rc_status -v
	;;
	restart)
		"$obsdir"/bs_publish --restart
		rc_status
	;;
	try-restart|reload)
		$0 status
		if test $? = 0; then
			"$obsdir"/bs_publish --restart
		else
			rc_reset        # Not running is not a failure.
		fi
		# Remember status and be quiet
		rc_status
	;;
	status)
		echo -n "Checking for obspublisher: "
		checkproc "$obsdir"/bs_publish
		rc_status -v
	;;
	*)
		echo "Usage: $0 {start|stop|status|try-restart|restart|reload}"
		exit 1
	;;
esac
rc_exit
