In preparation to introduce a stop command with a timeout parameter.

Signed-off-by: Fabian Ebner <f.eb...@proxmox.com>
---
 src/PVE/HA/Sim/Hardware.pm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/PVE/HA/Sim/Hardware.pm b/src/PVE/HA/Sim/Hardware.pm
index d2c0ec0..ac0c142 100644
--- a/src/PVE/HA/Sim/Hardware.pm
+++ b/src/PVE/HA/Sim/Hardware.pm
@@ -553,7 +553,7 @@ sub sim_hardware_cmd {
 
        my $cstatus = $self->read_hardware_status_nolock();
 
-       my ($cmd, $objid, $action, $target) = split(/\s+/, $cmdstr);
+       my ($cmd, $objid, $action, $param) = split(/\s+/, $cmdstr);
 
        die "sim_hardware_cmd: no node or service for command specified"
            if !$objid;
@@ -617,10 +617,10 @@ sub sim_hardware_cmd {
        } elsif ($cmd eq 'cfs') {
            die "sim_hardware_cmd: unknown cfs action '$action' for node 
'$node'"
                if $action !~ m/^(rw|update)$/;
-           die "sim_hardware_cmd: unknown cfs command '$target' for '$action' 
on node '$node'"
-               if $target !~ m/^(work|fail)$/;
+           die "sim_hardware_cmd: unknown cfs command '$param' for '$action' 
on node '$node'"
+               if $param !~ m/^(work|fail)$/;
 
-           $cstatus->{$node}->{cfs}->{$action} = $target eq 'work';
+           $cstatus->{$node}->{cfs}->{$action} = $param eq 'work';
            $self->write_hardware_status_nolock($cstatus);
 
        } elsif ($cmd eq 'reboot' || $cmd eq 'shutdown') {
@@ -656,13 +656,13 @@ sub sim_hardware_cmd {
            } elsif ($action eq 'migrate' || $action eq 'relocate') {
 
                die "sim_hardware_cmd: missing target node for '$action' 
command"
-                   if !$target;
+                   if !$param;
 
-               $self->queue_crm_commands_nolock("$action $sid $target");
+               $self->queue_crm_commands_nolock("$action $sid $param");
 
            } elsif ($action eq 'add') {
 
-               $self->add_service($sid, {state => 'started', node => $target});
+               $self->add_service($sid, {state => 'started', node => $param});
 
            } elsif ($action eq 'delete') {
 
@@ -670,11 +670,11 @@ sub sim_hardware_cmd {
 
            } elsif ($action eq 'lock') {
 
-               $self->lock_service($sid, $target);
+               $self->lock_service($sid, $param);
 
            } elsif ($action eq 'unlock') {
 
-               $self->unlock_service($sid, $target);
+               $self->unlock_service($sid, $param);
 
            } else {
                die "sim_hardware_cmd: unknown service action '$action' " .
-- 
2.20.1


_______________________________________________
pve-devel mailing list
pve-devel@pve.proxmox.com
https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to