kill -9 to make store its dead

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24993 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-03-29 09:03:47 +00:00
parent 2ac023fece
commit d93ac20298
11 changed files with 22 additions and 22 deletions

View File

@@ -109,11 +109,11 @@ kdcpid=$!
sh ${srcdir}/wait-kdc.sh
if [ "$?" != 0 ] ; then
kill ${kdcpid}
kill -9 ${kdcpid}
exit 1
fi
trap "kill ${kdcpid}; echo signal killing kdc; exit 1;" EXIT
trap "kill -9 ${kdcpid}; echo signal killing kdc; exit 1;" EXIT
ec=0