change order of checking for fanout

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13046 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2012-06-08 11:47:04 +00:00
parent b29a32f159
commit 4fd1fd364a
3 changed files with 10 additions and 10 deletions

View File

@ -54,12 +54,12 @@ if ($version) {
}
my $pshmaxp = 64;
# determine fanout
if ($ENV{XCATPSHFANOUT}) {
$pshmaxp=$ENV{XCATPSHFANOUT};
}
if ($fanout) { # see if they overroad the fanout from the command line
$pshmaxp=$fanout;
}
if ($ENV{XCATPSHFANOUT}) { # env variable rules
$pshmaxp=$ENV{XCATPSHFANOUT};
}
(my $noderange,my $destloc) = split(/:/,$ARGV[1]);
my @user = getpwuid($>);
my $homedir=$user[7];

View File

@ -34,12 +34,12 @@ sub usage
}
my $pshmaxp = 64;
if ($ENV{XCATPSHFANOUT}) {
$pshmaxp=$ENV{XCATPSHFANOUT};
}
if ($fanout) { # see if they overroad the fanout from the command line
$pshmaxp=$fanout;
}
if ($ENV{XCATPSHFANOUT}) { # env variable rules
$pshmaxp=$ENV{XCATPSHFANOUT};
}
# Processing arguments

View File

@ -35,16 +35,16 @@ if (!GetOptions(
}
my %nodehdl;
my $xcathost='localhost:3001';
my $pshmaxp = 64; #TODO: should this be server dictated or local conf?
my $pshmaxp = 64;
if ($ENV{XCATHOST}) {
$xcathost=$ENV{XCATHOST};
}
if ($ENV{XCATPSHFANOUT}) {
$pshmaxp=$ENV{XCATPSHFANOUT};
}
if ($fanout) { # see if they overroad the fanout from the command line
$pshmaxp=$fanout;
}
if ($ENV{XCATPSHFANOUT}) { # env variable rules
$pshmaxp=$ENV{XCATPSHFANOUT};
}
my $noderange = $ARGV[0];
my @nodes=();