#!/sbin/runscript # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header:$ depend() { need net after apache2 } start() { ebegin "Starting shibd" start-stop-daemon --start --quiet --exec ${SHIBD} --pidfile ${PIDPATH}/${PIDFILE} -- -f -w 30 >/dev/null 2>&1 eend $? } stop() { ebegin "Stopping shibd" start-stop-daemon --stop --quiet --pidfile ${PIDPATH}/${PIDFILE} eend $? }