One more bug - principles in the .k5login files weren't being assembled sipb-xen-console/3.2
authorEvan Broder <broder@mit.edu>
Sun, 30 Mar 2008 10:41:43 +0000 (06:41 -0400)
committerEvan Broder <broder@mit.edu>
Sun, 30 Mar 2008 10:41:43 +0000 (06:41 -0400)
with an '@' between the principal and the realm

svn path=/trunk/packages/sipb-xen-console/; revision=357

debian/changelog
files/usr/bin/sipb-xen-consolefs

index b32fad9..933e072 100644 (file)
@@ -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 <sipb-xen@mit.edu>  Sun, 30 Mar 2008 06:39:30 -0400
+
 sipb-xen-console (3.1) unstable; urgency=low
 
   * Clean up the motd a bit
index 380c94b..243a4cf 100755 (executable)
@@ -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):
                """