[pve-devel] [PATCH pve-guest-common 1/1] Add abstract methods for pre/post-migrate hooks

Stefan Hanreich s.hanreich at proxmox.com
Thu Sep 22 16:13:18 CEST 2022


Signed-off-by: Stefan Hanreich <s.hanreich at proxmox.com>
---
 src/PVE/AbstractMigrate.pm | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/src/PVE/AbstractMigrate.pm b/src/PVE/AbstractMigrate.pm
index d90e5b7..5e03488 100644
--- a/src/PVE/AbstractMigrate.pm
+++ b/src/PVE/AbstractMigrate.pm
@@ -178,6 +178,8 @@ sub migrate {
 	        "public key authentication\n" if $@;
 	}
 
+	$self->pre_migration_hooks($self->{vmid});
+
 	&$eval_int($self, sub { $self->phase1($self->{vmid}); });
 	my $err = $@;
 	if ($err) {
@@ -228,6 +230,8 @@ sub migrate {
 	    $self->log('err', $err);
 	    $self->{errors} = 1;
 	}
+
+	$self->post_migration_hooks($self->{vmid});
     })};
 
     my $err = $@;
@@ -368,4 +372,14 @@ sub get_bwlimit {
     return $bwlimit;
 }
 
+sub pre_migration_hooks {
+    my ($self, $vmid) = @_;
+    die "abstract method - implement me";
+}
+
+sub post_migration_hooks {
+    my ($self, $vmid) = @_;
+    die "abstract method - implement me";
+}
+
 1;
-- 
2.30.2





More information about the pve-devel mailing list