From 81d7be36841267166741f61536b7bc38043d3e21 Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 5 Aug 2005 23:06:35 +0000 Subject: [PATCH] - some versions of python don't eat single member set w/o comma --- lustre/utils/lconf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/utils/lconf b/lustre/utils/lconf index f6f36f3..91c64ed 100755 --- a/lustre/utils/lconf +++ b/lustre/utils/lconf @@ -1214,7 +1214,7 @@ class kmod: self.name) if not module and self.name != 'ptlrpcs_gss': panic('module not found:', self.name) - (rc, out) = run('/sbin/insmod', module) + (rc, out) = run('/usr/local/sbin/insmod', module) if rc: if self.name == 'ptlrpcs_gss': print "Warning: not support gss security!" @@ -3016,7 +3016,7 @@ def getServiceLevel(self): ret = 40 elif type in ('lmv', 'cobd',): ret = 45 - elif type in ('gkd'): + elif type in ('gkd',): ret = 50 elif type in ('cmobd', 'cobd',): ret = 60 -- 1.8.3.1