From 15787d4696d7d52c0299ff485a593bdeb9b0b70e Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 19 Oct 2005 00:41:25 +0000 Subject: [PATCH] Branch b1_4 b=9477 These lines should not have been removed in the 9477 patch. They prevent --select from limiting services in linux 2.4 --- lustre/utils/lconf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lustre/utils/lconf b/lustre/utils/lconf index 6cd2f61..f0127bc 100755 --- a/lustre/utils/lconf +++ b/lustre/utils/lconf @@ -1149,6 +1149,8 @@ class MDSDEV(Module): self.active = 1 else: self.active = 0 + if self.active and config.group and config.group != mds.get_val('group', mds.get_val('name')): + self.active = 0 self.inode_size = self.db.get_val_int('inodesize', 0) if self.inode_size == 0: @@ -2051,7 +2053,8 @@ def doCheckMtime(lustreDB, hosts): break if mdsdb: if lustreDB.get_mtime(): - print "Checking mtime of the LLOG" + if config.verbose: + print "Checking XML modification time" devpath = mdsdb.get_val('devpath','') xmtime = string.atof(lustreDB.get_mtime()) runcmd("mkdir /tmp/lustre-XXXX/") -- 1.8.3.1