summaryrefslogtreecommitdiffstats
path: root/network/shibboleth-sp/rc.shibboleth
diff options
context:
space:
mode:
Diffstat (limited to 'network/shibboleth-sp/rc.shibboleth')
-rw-r--r--network/shibboleth-sp/rc.shibboleth39
1 files changed, 39 insertions, 0 deletions
diff --git a/network/shibboleth-sp/rc.shibboleth b/network/shibboleth-sp/rc.shibboleth
new file mode 100644
index 0000000000..8854433a97
--- /dev/null
+++ b/network/shibboleth-sp/rc.shibboleth
@@ -0,0 +1,39 @@
+#!/bin/sh
+
+shibd_start() {
+ echo "Starting the shibd service: /usr/sbin/shibd"
+ /usr/sbin/shibd -f -u shibd -g shibd
+}
+
+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