]> www.infradead.org Git - users/dhowells/kafs-utils.git/commitdiff
aklog now makes key name lower case
authorDavid Howells <dhowells@redhat.com>
Mon, 12 Feb 2018 22:13:56 +0000 (22:13 +0000)
committerDavid Howells <dhowells@redhat.com>
Tue, 13 Feb 2018 10:20:41 +0000 (10:20 +0000)
When aklog adds a key, it now makes the cell name lower case, so kafs-utils
needs to follow suit.

Signed-off-by: David Howells <dhowells@redhat.com>
kafs/lib/cell.py

index b3fa9719b1b67e8b7d4ead32a27d9d49e3c4d5d1..17967dcbff1da7cb80d35cdd36223c7172566266 100644 (file)
@@ -157,7 +157,7 @@ class cell:
         key = None
         security = 0
         if params:
-            key = "afs@" + self.__name.upper()
+            key = "afs@" + self.__name.lower()
             if "localauth" in params:
                 raise RuntimeError("Don't support -localauth yet")
             elif "noauth" in params: