Add check to verify the windc module as loaded.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19806 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-01-10 19:02:24 +00:00
parent d7bdb6f04c
commit 1e9aabbe3d

View File

@@ -85,6 +85,9 @@ ${kadmin} check ${R2} || exit 1
echo foo > ${objdir}/foopassword
echo "Empty log"
> messages.log
echo Starting kdc
${kdc} &
kdcpid=$!
@@ -99,6 +102,10 @@ trap "kill ${kdcpid}; echo signal killing kdc; exit 1;" EXIT
ec=0
echo "Check that WINDC module was loaded "
grep "windc init" messages.log >/dev/null || \
{ ec=1 ; eval "${testfailed}"; }
echo "Getting client initial tickets"; > messages.log
${kinit} --password-file=${objdir}/foopassword foo@${R} || \
{ ec=1 ; eval "${testfailed}"; }