From 6410db445d5aab17a2900b93363c30b0aff79f54 Mon Sep 17 00:00:00 2001 From: sjing Date: Thu, 25 Apr 2013 07:54:06 +0000 Subject: [PATCH] fix for bug 3526 - remove litetree.table from inst_root for the update. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@16060 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/InstUtils.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl-xCAT/xCAT/InstUtils.pm b/perl-xCAT/xCAT/InstUtils.pm index f252849e3..8f2bd63b6 100644 --- a/perl-xCAT/xCAT/InstUtils.pm +++ b/perl-xCAT/xCAT/InstUtils.pm @@ -893,12 +893,12 @@ sub dolitesetup } } - if (-e $litetreetab) { - my $rc = xCAT::Utils->runcmd("rm $litetreetab", -1); + if (-e $litetreetable) { + my $rc = xCAT::Utils->runcmd("rm $litetreetable", -1); if ($::RUNCMD_RC != 0) { my $rsp; - push @{$rsp->{data}}, "Could not remove existing $litetreetab file."; + push @{$rsp->{data}}, "Could not remove existing $litetreetable file."; xCAT::MsgUtils->message("E", $rsp, $callback); return 1; }