From 6f916de5e14333f8c4fe4368799a9b42ff7cfcac Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 18 Oct 2005 18:26:37 +0000 Subject: [PATCH] b=8080 - modules aren't as automatic as they should be for linux 2.4 - for some reason python in linux 2.4 didn't understand this lmc construct --- lustre/utils/lmc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/utils/lmc b/lustre/utils/lmc index 3979e6e..f14733e 100755 --- a/lustre/utils/lmc +++ b/lustre/utils/lmc @@ -676,7 +676,7 @@ def add_net(gen, lustre, options): if options.nonet: if options.verbose: print "Skip the remote host networking test." - elif node_name != 'client' and real_net_type in ('tcp'): + elif (node_name != 'client') and (real_net_type == 'tcp'): print "Testing network on", node_name target = string.split(nid,'@')[0] out = runcmd("ping -c 1 -w 10 %s" %target) -- 1.8.3.1