mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
174e0ead9a
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
49 lines
766 B
Bash
49 lines
766 B
Bash
#!/bin/sh
|
|
|
|
SHIBD_USER=shibd
|
|
SHIBD_WAIT=30
|
|
SHIBD_PID=/var/run/shibboleth/shibd.pid
|
|
|
|
DAEMON_OPTS="-f -u $SHIBD_USER -g $SHIBD_USER -w $SHIBD_WAIT -p $SHIBD_PID"
|
|
|
|
shibd_start() {
|
|
if [ -f $SHIBD_PID ]; then
|
|
echo "The shibd service is already running"
|
|
else
|
|
echo "Starting the shibd service: /usr/sbin/shibd"
|
|
/usr/sbin/shibd $DAEMON_OPTS
|
|
fi
|
|
}
|
|
|
|
shibd_stop() {
|
|
echo "Stoping the shibd service: /usr/sbin/shibd"
|
|
killall shibd
|
|
}
|
|
|
|
shibd_restart() {
|
|
shibd_stop
|
|
sleep 1
|
|
shibd_start
|
|
}
|
|
|
|
shibd_configtest() {
|
|
/usr/sbin/shibd -t
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
shibd_start
|
|
;;
|
|
'stop')
|
|
shibd_stop
|
|
;;
|
|
'restart')
|
|
shibd_restart
|
|
;;
|
|
'configtest')
|
|
shibd_configtest
|
|
;;
|
|
*)
|
|
echo "Usage: $0 start|stop|restart|configtest"
|
|
;;
|
|
esac
|