temporary fix for postscripts for EXECUTE and EXECUTEALWAYS

This commit is contained in:
Arif Ali 2014-04-29 07:45:15 +01:00
parent 3e52ee0c40
commit 06cad71050

View File

@ -5704,10 +5704,10 @@ sub run_rsync_postscripts
push @args,"-e";
# if on the service node need to add the $syncdir directory
# to the path
if (xCAT::Utils->isServiceNode()) {
my $tmpp=$syncdir . $ps;
$ps=$tmpp;
}
#if (xCAT::Utils->isServiceNode()) {
# my $tmpp=$syncdir . $ps;
# $ps=$tmpp;
#}
push @args,$ps;
$out=xCAT::Utils->runxcmd( { command => ['xdsh'],
node => \@nodes,
@ -6039,10 +6039,10 @@ sub run_always_rsync_postscripts
push @args,"-e";
# if on the service node need to add the $syncdir directory
# to the path
if (xCAT::Utils->isServiceNode()) {
my $tmpp=$syncdir . $ps;
$ps=$tmpp;
}
#if (xCAT::Utils->isServiceNode()) {
# my $tmpp=$syncdir . $ps;
# $ps=$tmpp;
#}
push @args, $ps;
push (@nodes, @{$$dshparms{'postscripts'}{$ps}});