Skip Menu |
 

From: petesea@bigfoot.com
Date: Mon, 25 Sep 2006 18:06:23 -0700 (Pacific Daylight Time)
Subject: Kfw: kinit doesn't accept windows path to keytab file
To: kfw-bugs@mit.edu
The kinit included with KfW doesn't seem to like a Windows path to a
keytab file. eg:

kinit -kt d:\my\path\to\keytab.file

It seems to be OK with a Windows path as long as it includes UNIX forward
(/) slashes, but it doesn't like a drive letter.

So... while this appears to work:

kinit -kt /my/path/to/keytab.file

this won't

kinit -kt d:/my/path/to/keytab.file

It would preferable if it accepted either forward (/) or backward (\)
slashes... but it really needs to accept a drive letter.
On all platforms the format for a keytab or a ccache is <TYPE>:<name>.

The proper format would be

FILE:d:\path\file

However, there is some magic glue that is supposed to work to
auto-detect a drive letter and guess from that it is a FILE: type. The
fix for this was pulled up to the release branch tonight.