From 194ec8182edce0395dcc9719e80beea88a5217e5 Mon Sep 17 00:00:00 2001 From: David Howells Date: Mon, 12 Feb 2018 22:13:56 +0000 Subject: [PATCH] aklog now makes key name lower case 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 --- kafs/lib/cell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kafs/lib/cell.py b/kafs/lib/cell.py index b3fa971..17967dc 100644 --- a/kafs/lib/cell.py +++ b/kafs/lib/cell.py @@ -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: -- 2.50.1