diff --git a/perl-xCAT/xCAT/DSHCLI.pm b/perl-xCAT/xCAT/DSHCLI.pm index b1a3c3e6a..44e6c6a9a 100644 --- a/perl-xCAT/xCAT/DSHCLI.pm +++ b/perl-xCAT/xCAT/DSHCLI.pm @@ -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}});