From 551cde5ef9219e2a0f01cd846b9e259f43eb41e2 Mon Sep 17 00:00:00 2001 From: nott Date: Thu, 7 Oct 2010 16:29:54 +0000 Subject: [PATCH] add full path to litetree call git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7776 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/InstUtils.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/InstUtils.pm b/perl-xCAT/xCAT/InstUtils.pm index 2ef53dfec..af1251f5b 100644 --- a/perl-xCAT/xCAT/InstUtils.pm +++ b/perl-xCAT/xCAT/InstUtils.pm @@ -908,7 +908,7 @@ sub dolitesetup return 1; } - my @filelist = xCAT::Utils->runcmd("litefile $noderange", -1); + my @filelist = xCAT::Utils->runcmd("/opt/xcat/bin/litefile $noderange", -1); foreach my $l (@filelist) { $l =~ s/://g; # remove ":"'s $l =~ s/\s+/|/g; # change separator to "|" @@ -925,7 +925,7 @@ sub dolitesetup xCAT::MsgUtils->message("E", $rsp, $callback); return 1; } - my @treelist = xCAT::Utils->runcmd("litetree $noderange", -1); + my @treelist = xCAT::Utils->runcmd("/opt/xcat/bin/litetree $noderange", -1); foreach my $l (@treelist) { my ($p, $serv, $dir) = split (/:/, $l);