summaryrefslogtreecommitdiffstats
path: root/_kpropd
blob: 219e41c48b851c3b93a949f92f1bf4a4729a34d1 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
kpropd=/usr/sbin/kpropd
if ! test -f /var/kerberos/krb5kdc/kpropd.acl ; then
	echo $"Error. This does not appear to be a slave server, kpropd.acl not found"
	exit 6
fi
if ! test -x "$kpropd" ; then
	exit 5
fi
exec "$kpropd" "$@"