From 25791aef852b9fb1da2f8ffeaeba52f81d255b50 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Sun, 30 Mar 2008 06:41:43 -0400 Subject: [PATCH 1/1] One more bug - principles in the .k5login files weren't being assembled with an '@' between the principal and the realm svn path=/trunk/packages/sipb-xen-console/; revision=357 --- debian/changelog | 7 +++++++ files/usr/bin/sipb-xen-consolefs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b32fad9..933e072 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +sipb-xen-console (3.2) unstable; urgency=low + + * Fixing a bug in sipb-xen-consolefs ('@' is not re-added to realms + in the .k5login + + -- SIPB Xen Project Sun, 30 Mar 2008 06:39:30 -0400 + sipb-xen-console (3.1) unstable; urgency=low * Clean up the motd a bit diff --git a/files/usr/bin/sipb-xen-consolefs b/files/usr/bin/sipb-xen-consolefs index 380c94b..243a4cf 100755 --- a/files/usr/bin/sipb-xen-consolefs +++ b/files/usr/bin/sipb-xen-consolefs @@ -91,7 +91,7 @@ class ConsoleFS(Fuse): princ = user realm = "ATHENA.MIT.EDU" - return princ.replace('.', '/') + realm + return princ.replace('.', '/') + '@' + realm def getattr(self, path): """ -- 1.7.9.5