mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-27 11:33:50 +00:00
PVE::Replication::remote_finalize_local_job - new helper
Simple wrapper to call "pvesr finalize-local-job" on a remote cluster node.
This commit is contained in:
parent
acea170e05
commit
b11e512fae
@ -187,6 +187,16 @@ sub remote_prepare_local_job {
|
|||||||
return $remote_snapshots;
|
return $remote_snapshots;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub remote_finalize_local_job {
|
||||||
|
my ($ssh_info, $jobid, $vmid, $volumes, $last_sync) = @_;
|
||||||
|
|
||||||
|
my $ssh_cmd = PVE::Cluster::ssh_info_to_command($ssh_info);
|
||||||
|
my $cmd = [@$ssh_cmd, '--', 'pvesr', 'finalize-local-job', $jobid,
|
||||||
|
$vmid, @$volumes, '--last_sync', $last_sync];
|
||||||
|
|
||||||
|
PVE::Tools::run_command($cmd);
|
||||||
|
}
|
||||||
|
|
||||||
sub prepare {
|
sub prepare {
|
||||||
my ($storecfg, $volids, $jobid, $last_sync, $start_time, $logfunc) = @_;
|
my ($storecfg, $volids, $jobid, $last_sync, $start_time, $logfunc) = @_;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user