]> git.proxmox.com Git - pve-ha-manager.git/commitdiff
Document parameters in parent class
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 12 Oct 2015 13:04:39 +0000 (15:04 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Mon, 12 Oct 2015 16:14:45 +0000 (18:14 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/PVE/HA/Resources.pm

index c41fa91186a5dd20f2512e5f698ee53eea745baf..c415c3c441e5117f75de49217b5f462afcdead93 100644 (file)
@@ -89,22 +89,32 @@ sub parse_section_header {
 }
 
 sub start {
+    my ($class, $haenv, $params) = @_;
+
     die "implement in subclass";
 }
 
 sub shutdown {
+    my ($class, $haenv, $param) = @_;
+
     die "implement in subclass";
 }
 
 sub migrate {
+    my ($class, $haenv, $params) = @_;
+
     die "implement in subclass";
 }
 
 sub config_file {
+    my ($class, $id, $nodename) = @_;
+
     die "implement in subclass"
 }
 
 sub check_running {
+    my ($class, $id) = @_;
+
     die "implement in subclass";
 }