The new `overrule-shutdown` parameter is boolean and defaults to 0. If it is 1, all active `vzshutdown` tasks for the same CT (which are visible to the user/token) are aborted before attempting to stop the CT.
Passing `overrule-shutdown=1` is forbidden for HA resources. Signed-off-by: Friedrich Weber <f.we...@proxmox.com> --- Notes: changes v2 -> v3: - avoid printing empty list of overruled tasks - rephrased parameter description/commit to reflect changed logic - adapt to rename to `abort_guest_tasks` changes v1 -> v2: - move overrule code into worker, as suggested by Wolfgang - print to worker stdout instead of syslog src/PVE/API2/LXC/Status.pm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/PVE/API2/LXC/Status.pm b/src/PVE/API2/LXC/Status.pm index 7741374..08e23b6 100644 --- a/src/PVE/API2/LXC/Status.pm +++ b/src/PVE/API2/LXC/Status.pm @@ -220,6 +220,12 @@ __PACKAGE__->register_method({ node => get_standard_option('pve-node'), vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid_running }), skiplock => get_standard_option('skiplock'), + 'overrule-shutdown' => { + description => "Abort any active and visible 'vzshutdown' tasks before stopping", + optional => 1, + type => 'boolean', + default => 0, + } }, }, returns => { @@ -237,10 +243,15 @@ __PACKAGE__->register_method({ raise_param_exc({ skiplock => "Only root may use this option." }) if $skiplock && $authuser ne 'root@pam'; + my $overrule_shutdown = extract_param($param, 'overrule-shutdown'); + die "CT $vmid not running\n" if !PVE::LXC::check_running($vmid); if (PVE::HA::Config::vm_is_ha_managed($vmid) && $rpcenv->{type} ne 'ha') { + raise_param_exc({ 'overrule-shutdown' => "Not applicable for HA resources." }) + if $overrule_shutdown; + my $hacmd = sub { my $upid = shift; @@ -257,6 +268,14 @@ __PACKAGE__->register_method({ my $realcmd = sub { my $upid = shift; + if ($overrule_shutdown) { + my $overruled_tasks = PVE::GuestHelpers::abort_guest_tasks( + $rpcenv, 'vzshutdown', $vmid); + my $overruled_tasks_list = join(", ", $overruled_tasks->@*); + print "overruled vzshutdown tasks: $overruled_tasks_list\n" + if @$overruled_tasks; + }; + PVE::LXC::Config->lock_config($vmid, sub { syslog('info', "stopping CT $vmid: $upid\n"); -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel