summaryrefslogtreecommitdiff
path: root/core/krb5/krb5-kdc
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-05-18 02:14:12 -0700
committerroot <root@rshg054.dnsready.net>2013-05-18 02:14:12 -0700
commit4e1091baf58d4d28f6bf3cc4fee8ea0bfd10a7a8 (patch)
tree84f66b46f238f46928efc905cad1b88a2d96c668 /core/krb5/krb5-kdc
parentb5f4c940227b9a7051c381688636d59f67864f93 (diff)
Sat May 18 02:12:59 PDT 2013
Diffstat (limited to 'core/krb5/krb5-kdc')
-rw-r--r--core/krb5/krb5-kdc40
1 files changed, 0 insertions, 40 deletions
diff --git a/core/krb5/krb5-kdc b/core/krb5/krb5-kdc
deleted file mode 100644
index 05a03411e..000000000
--- a/core/krb5/krb5-kdc
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-
-# general config
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/krb5kdc`
-case "$1" in
- start)
- stat_busy "Starting Kerberos Authentication"
- if [ -z "$PID" ]; then
- /usr/sbin/krb5kdc
- fi
- if [ ! -z "$PID" -o $? -gt 0 ]; then
- stat_fail
- else
- add_daemon krb5-kdc
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping Kerberos Authentication"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon krb5-kdc
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
- ;;
-esac
-exit 0