File obspublisher of Package obs-server
#! /bin/sh
# Copyright (c) 2007, Novell Inc.
#
# Author: 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 obssrcserver obsrepserver
# Should-Start: obsscheduler
# Required-Stop: $null
# Default-Start: 3 5
# Default-Stop: 0 1 2 4 6
# Description: openSUSE build service 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]}
obsdir=/usr/lib/obs/server/
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 -l /srv/obs/log/publisher.log \
"$obsdir"/bs_publish
rc_status -v
;;
stop)
echo -n "Shutting down obspublisher"
killproc "$obsdir"/bs_publish
rc_status -v
;;
restart)
## If first returns OK call the second, if first or
## second command fails, set echo return value.
$0 stop && $0 start
rc_status
;;
try-restart)
$0 status
if test $? = 0; then
$0 restart
else
rc_reset # Not running is not a failure.
fi
# Remember status and be quiet
rc_status
;;
reload)
;;
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