Little help on scripting please.
I'm trying to get a logout script that will destroy the Kerberos ticket cache at logout. I can make it work in Terminal but when pushed with Casper Remote or a policy it does nothing.
This is all I have:
#!/bin/sh
##################################
# Destroy the Kerberos ticket of current user.
# Nathaniel Lindley for SPPS, April 10, 2009
##################################
kdestroy -a
What else do I need? Strange thing is that this is the default behavior in 10.4 (to destroy kerberos ticket at logout) but not in 10.5, by design according to Apple. The problem is that at one school, students login with a "student" generic local account and then connect to a server using their AD credentials from 10.5 client. Then student logs out, and another student logs in, trys to Connect to Server and is already logged in as the previous student whose ticket is retained for 10 hours.
Thanks for the help,
-Nathaniel
