summaryrefslogtreecommitdiff
path: root/core/krb5/krb5-kadmind
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-03-12 00:04:27 -0700
committerroot <root@rshg054.dnsready.net>2013-03-12 00:04:27 -0700
commit9f8838d16719128121b4efde3bf6c7cc650f1801 (patch)
tree54cb20333b4366966150ddc060ca8da9b26bdd40 /core/krb5/krb5-kadmind
parentef17357a9745e05e301b724d13a341067ddb3d5b (diff)
Tue Mar 12 00:04:26 PDT 2013
Diffstat (limited to 'core/krb5/krb5-kadmind')
-rw-r--r--core/krb5/krb5-kadmind40
1 files changed, 0 insertions, 40 deletions
diff --git a/core/krb5/krb5-kadmind b/core/krb5/krb5-kadmind
deleted file mode 100644
index 04df0dcff..000000000
--- a/core/krb5/krb5-kadmind
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-
-# general config
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/kadmind`
-case "$1" in
- start)
- stat_busy "Starting Kerberos Admin Daemon"
- if [ -z "$PID" ]; then
- /usr/sbin/kadmind
- fi
- if [ ! -z "$PID" -o $? -gt 0 ]; then
- stat_fail
- else
- add_daemon krb5-kadmind
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping Kerberos Admin Daemon"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon krb5-kadmind
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
- ;;
-esac
-exit 0