25 lines
464 B
Bash
25 lines
464 B
Bash
|
#!@RCD_SCRIPTS_SHELL@
|
||
|
#
|
||
|
# $NetBSD: shibd.sh,v 1.1.1.1 2011/03/15 13:15:37 pettai Exp $
|
||
|
#
|
||
|
# PROVIDE: shibd
|
||
|
# REQUIRE: DAEMON
|
||
|
|
||
|
if [ -f /etc/rc.subr ]; then
|
||
|
. /etc/rc.subr
|
||
|
fi
|
||
|
|
||
|
name="shibd"
|
||
|
rcvar=$name
|
||
|
command="@PREFIX@/sbin/shibd"
|
||
|
pidfile="/var/run/shibboleth/shibd.pid"
|
||
|
command_args=""
|
||
|
|
||
|
if [ -f /etc/rc.subr ]; then
|
||
|
load_rc_config $name
|
||
|
run_rc_command "$1"
|
||
|
else
|
||
|
echo -n " ${name}"
|
||
|
${command} ${shibd_flags} ${command_args}
|
||
|
fi
|