summaryrefslogtreecommitdiffstats
path: root/kpropd.init
blob: e4bd3b7534938a5c217c0be8eba9d6396147dce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/bash
#
# kpropd.init  Start and stop the Kerberos 5 propagation client.
#
# chkconfig:   - 35 65
# description: Kerberos 5 is a trusted third-party authentication system.  \
#	       This script starts and stops the service that allows this \
#              KDC to receive updates from your master KDC.
# processname: kpropd
#

# Get config.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

# Source function library.
. /etc/init.d/functions

RETVAL=0
prog="Kerberos 5 Propagation Server"
kpropd=/usr/kerberos/sbin/kpropd

# Sheel functions to cut down on useless shell instances.
start() {
  	if [ ! -f /var/kerberos/krb5kdc/kpropd.acl ] ; then
	    exit 0
	fi
	echo -n $"Starting $prog: "
	daemon ${kpropd} -S
	RETVAL=$?
	echo
	[ $RETVAL = 0 ] && touch /var/lock/subsys/kprop
}
stop() {
	echo -n $"Stopping $prog: "
	killproc ${kpropd}
	RETVAL=$?
	echo
	[ $RETVAL = 0 ] && rm -f /var/lock/subsys/kprop
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  restart)
	stop
	start
	;;
  status)
	status ${kpropd}
	retval=$?
	;;
  condrestart)
	if [ -f /var/lock/subsys/kprop ] ; then
		stop
		start
	fi
	;;
  *)
	echo $"Usage: $0 {start|stop|status|restart|condrestart}"
	RETVAL=1
	;;
esac

exit $RETVAL