for defect 3086530,

there's one small mistake when handling the directory for litefile entries, I have fixed it.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7828 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
mxi1 2010-10-13 10:12:49 +00:00
parent c0aa4c2a24
commit 0b435da37b

View File

@ -1026,7 +1026,7 @@ sub dolitesetup
} else {
# create dir and touch file in .default
my $dir = dirname($instrootfile);
$mkcmd = qq~mkdir -p $dir; touch $default$file~;
$mkcmd = qq~mkdir -p $default$filedir; touch $default$file~;
}
my $output = xCAT::Utils->runcmd("$mkcmd", -1);
if ($::RUNCMD_RC != 0)