setrout postscript
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9257 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
parent
f1d0eaf2b0
commit
160b3beee1
@ -224,7 +224,7 @@ sub makescript
|
||||
|
||||
my $noderesent =
|
||||
$noderestab->getNodeAttribs($node,
|
||||
['nfsserver', 'installnic', 'primarynic']);
|
||||
['nfsserver', 'installnic', 'primarynic','routenames']);
|
||||
if ($noderesent and defined($noderesent->{'nfsserver'}))
|
||||
{
|
||||
push @scriptd, "NFSSERVER=" . $noderesent->{'nfsserver'} . "\n";
|
||||
@ -241,6 +241,34 @@ sub makescript
|
||||
push @scriptd, "export PRIMARYNIC\n";
|
||||
}
|
||||
|
||||
#routes
|
||||
if ($noderesent and defined($noderesent->{'routenames'}))
|
||||
{
|
||||
my $rn=$noderesent->{'routenames'};
|
||||
my @rn_a=split(',', $rn);
|
||||
my $routestab = xCAT::Table->new('routes');
|
||||
if ((@rn_a > 0) && ($routestab)) {
|
||||
push @scriptd, "NODEROUTENAMES=$rn\n";
|
||||
push @scriptd, "export NODEROUTENAMES\n";
|
||||
foreach my $route_name (@rn_a) {
|
||||
my $routesent = $routestab->getAttribs({routename => $route_name}, 'net', 'mask', 'gateway', 'ifname');
|
||||
if ($routesent and defined($routesent->{net}) and defined($routesent->{mask})) {
|
||||
my $val="ROUTE_$route_name=" . $routesent->{net} . "," . $routesent->{mask};
|
||||
$val .= ",";
|
||||
if (defined($routesent->{gateway})) {
|
||||
$val .= $routesent->{gateway};
|
||||
}
|
||||
$val .= ",";
|
||||
if (defined($routesent->{ifname})) {
|
||||
$val .= $routesent->{ifname};
|
||||
}
|
||||
push @scriptd, "$val\n";
|
||||
push @scriptd, "export ROUTE_$route_name\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
my $os;
|
||||
my $profile;
|
||||
my $arch;
|
||||
|
30
xCAT/postscripts/setroute
Executable file
30
xCAT/postscripts/setroute
Executable file
@ -0,0 +1,30 @@
|
||||
#!/bin/sh
|
||||
# IBM(c) 2011 EPL license http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
#=head1 setroute
|
||||
#=head2 setrout command adds the routes to the node according to
|
||||
# what is specified in the xCAT tables.
|
||||
# The route name for the node is defined in noderes.routenames.
|
||||
# The route itself is defined in the routes table.
|
||||
#=cut
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
if [[ -z "$NODEROUTENAMES" ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
for rn in `echo "$NODEROUTENAMES" | tr "," "\n"`
|
||||
do
|
||||
eval route_string=\$ROUTE_$rn
|
||||
net=`echo $route_string |cut -d',' -f1`
|
||||
mask=`echo $route_string |cut -d',' -f2`
|
||||
gw=`echo $route_string |cut -d',' -f3`
|
||||
ifname=`echo $route_string |cut -d',' -f4`
|
||||
|
||||
cmd="routeop add $net $mask $gw $ifname"
|
||||
result=`$cmd 2>&1`
|
||||
echo $result
|
||||
done
|
||||
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user