diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-config-loader.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-config-loader.pl b/scripts/vyatta-config-loader.pl index 856799a..57ceb47 100755 --- a/scripts/vyatta-config-loader.pl +++ b/scripts/vyatta-config-loader.pl @@ -73,7 +73,7 @@ foreach (@all_nodes) { my ($path_ref, $rank) = @$_; if ($rank != $cur_rank) { # commit all nodes with the same rank together. - $ret = system("$commit_cmd"); + $ret = 0; #system("$commit_cmd"); if ($ret >> 8) { print OLDOUT "Commit failed at rank $cur_rank\n"; print WARN "Commit failed at rank $cur_rank\n"; |