diff options
author | Britney Fransen <brfransen@gmail.com> | 2014-04-14 21:48:14 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2014-04-14 21:48:14 (GMT) |
commit | 5f34035c95ab2310ddcad8b3e9a3c7971ee8c9e0 (patch) | |
tree | e15de82fff5d454c7941c7948ea215715f848b9c /abs/core/heimdal/heimdal-kadmind | |
parent | 0196df179d5fa1319bbf0b17f7f2234b9e0204e1 (diff) | |
download | linhes_pkgbuild-5f34035c95ab2310ddcad8b3e9a3c7971ee8c9e0.zip linhes_pkgbuild-5f34035c95ab2310ddcad8b3e9a3c7971ee8c9e0.tar.gz linhes_pkgbuild-5f34035c95ab2310ddcad8b3e9a3c7971ee8c9e0.tar.bz2 |
heimdal: update to 1.5.2. refs #961
Diffstat (limited to 'abs/core/heimdal/heimdal-kadmind')
-rw-r--r-- | abs/core/heimdal/heimdal-kadmind | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/abs/core/heimdal/heimdal-kadmind b/abs/core/heimdal/heimdal-kadmind new file mode 100644 index 0000000..9479b63 --- /dev/null +++ b/abs/core/heimdal/heimdal-kadmind @@ -0,0 +1,41 @@ +#!/bin/bash + +# general config +. /etc/rc.conf +. /etc/rc.d/functions + +PID=`pidof -o %PPID /opt/heimdal/sbin/kadmind` +case "$1" in + start) + stat_busy "Starting Heimdal KDC" + if [ -z "$PID" ]; then + /opt/heimdal/sbin/kadmind & + fi + if [ ! -z "$PID" -o $? -gt 0 ]; then + stat_fail + else + add_daemon heimdal-kadmind + stat_done + fi + ;; + stop) + stat_busy "Stopping Heimdal KDC" + [ ! -z "$PID" ] && kill $PID &> /dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon heimdal-kadmind + stat_done + fi + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart}" + ;; +esac +exit 0 + |