#!/usr/bin/perl use strict; use warnings; use POSIX; use File::Path; use PVE::SafeSyslog; use PVE::Tools; use PVE::Cluster; use PVE::INotify; use PVE::RPCEnvironment; use PVE::JSONSchema qw(get_standard_option); use PVE::CLIHandler; use PVE::Storage; use PVE::Storage::Plugin; use PVE::LXC; use PVE::LXCSetup; use Data::Dumper; use base qw(PVE::CLIHandler); $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin'; initlog ('lxc-pve-poststop-hook'); die "please run as root\n" if $> != 0; PVE::INotify::inotify_init(); my $rpcenv = PVE::RPCEnvironment->init('cli'); $rpcenv->set_language($ENV{LANG}); $rpcenv->set_user('root@pam'); # we cannot use cfs_read here (permission problem) #$rpcenv->init_request(); my $nodename = PVE::INotify::nodename(); __PACKAGE__->register_method ({ name => 'lxc-pve-poststop-hook', path => 'lxc-pve-poststop-hook', method => 'GET', description => "vm_stop_cleanup.", parameters => { additionalProperties => 0, properties => { name => { description => "The container name. This hook is only active for containers using numeric IDs, where configuration is stored on /etc/pve/lxc/.conf (else it is just a NOP).", type => 'string', pattern => '\S+', maxLength => 64, } }, }, returns => { type => 'null' }, code => sub { my ($param) = @_; return undef if $param->{name} !~ m/^\d+$/; my $vmid = $param->{name}; return undef if ! -f PVE::LXC::config_file($vmid); my $conf = PVE::LXC::load_config($vmid); my $storage_cfg = PVE::Storage::config(); PVE::LXC::vm_stop_cleanup($storage_cfg, $vmid, $conf); return undef; }}); push @ARGV, 'help' if !scalar(@ARGV); my $param = {}; if ((scalar(@ARGV) == 1) && ($ARGV[0] eq 'printmanpod') || ($ARGV[0] eq 'verifyapi')) { # OK } elsif ((scalar(@ARGV) == 3) && ($ARGV[1] eq 'lxc') && ($ARGV[2] eq 'post-stop')) { $param->{name} = $ENV{'LXC_NAME'}; die "got wrong name" if $param->{name} ne $ARGV[0]; @ARGV = (); } else { @ARGV = ('help'); } my $cmddef = [ __PACKAGE__, 'lxc-pve-poststop-hook', [], $param]; PVE::CLIHandler::handle_simple_cmd($cmddef, \@ARGV, undef, $0); exit 0; __END__ =head1 NAME lxc-pve - LXC post stop hook for Proxmox VE =head1 SYNOPSIS =include synopsis =head1 DESCRIPTION This post stop hook detach loop devices and deactivate volumes for pve container. =head1 SEE ALSO lct(1) =include pve_copyright