fixed problem with table name

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8246 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
vallard 2010-11-23 18:39:28 +00:00
parent 7abbc7e933
commit 51fdf1c689

View File

@ -124,7 +124,7 @@ sub makescript
my $typetab = xCAT::Table->new('nodetype');
my $posttab = xCAT::Table->new('postscripts');
my $sitetab = xCAT::Table->new('site');
my $ostab = xCAT::Table->new('ostab');
my $ostab = xCAT::Table->new('osimage');
my %rsp;
my $rsp;
@ -139,7 +139,7 @@ sub makescript
}
unless ($ostab){
push @{$rsp->{data}},
"Unable to open os table (ostab)";
"Unable to open osimage table";
xCAT::MsgUtils->message("E", $rsp, $callback);
return undef;
}