2013-08-15 04:10:24 +00:00
|
|
|
#!/bin/sh
|
2013-10-22 21:48:49 +00:00
|
|
|
#
|
|
|
|
# Check for error conditions which the init system expects us to check and
|
|
|
|
# for other common errors, and exit with the expected status codes.
|
|
|
|
#
|
2013-08-15 04:10:24 +00:00
|
|
|
kadmind=/usr/sbin/kadmind
|
|
|
|
if test -f /var/kerberos/krb5kdc/kpropd.acl ; then
|
|
|
|
echo $"Error. This appears to be a slave server, found kpropd.acl"
|
|
|
|
exit 6
|
|
|
|
fi
|
|
|
|
if ! test -x "$kadmind" ; then
|
|
|
|
exit 5
|
|
|
|
fi
|
|
|
|
exec "$kadmind" "$@"
|