defect 2948360: use subroutine getInstallDir to get the install dir

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5269 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
daniceexi 2010-02-24 07:52:17 +00:00
parent 6401ea3851
commit e6ea6af7e0

View File

@ -151,12 +151,7 @@ sub runbeginpre
my $args = $request->{arg};
my $action=$args->[0];
my $localhostname=hostname();
my $installdir = "/install"; # default
my @installdir1 = xCAT::Utils->get_site_attribute("installdir");
if ($installdir1[0])
{
$installdir = $installdir1[0];
}
my $installdir = xCAT::Utils->getInstallDir();
my %script_hash=getprescripts($nodes, $action, "begin");
foreach my $scripts (keys %script_hash) {
@ -202,12 +197,7 @@ sub runendpre
my $args= $request->{arg};
my $action=$args->[0];
my $localhostname=hostname();
my $installdir = "/install"; # default
my @installdir1 = xCAT::Utils->get_site_attribute("installdir");
if ($installdir1[0])
{
$installdir = $installdir1[0];
}
my $installdir = xCAT::Utils->getInstallDir();
my %script_hash=getprescripts($nodes, $action, "end");
foreach my $scripts (keys %script_hash) {