#!/usr/bin/perl -w use strict; use PVE::Tools qw(extract_param); use PVE::Cluster qw(cfs_register_file cfs_read_file); use PVE::SafeSyslog; use PVE::INotify; use PVE::RPCEnvironment; use PVE::CLIHandler; use PVE::API2::OpenVZ; use Data::Dumper; # fixme: remove use base qw(PVE::CLIHandler); $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin'; initlog('pvectl'); die "please run as root\n" if $> != 0; PVE::INotify::inotify_init(); my $nodename = PVE::INotify::nodename(); my $rpcenv = PVE::RPCEnvironment->init('cli'); $rpcenv->init_request(); $rpcenv->set_language($ENV{LANG}); $rpcenv->set_user('root@pam'); my $upid_exit = sub { my $upid = shift; my $status = PVE::Tools::upid_read_status($upid); exit($status eq 'OK' ? 0 : -1); }; my $cmddef = { list => [ "PVE::API2::OpenVZ", 'vmlist', [], { node => $nodename }, sub { my $vmlist = shift; exit 0 if (!scalar(@$vmlist)); printf "%10s %-20s %-10s %-10s %-12s %-10s\n", qw(VMID NAME STATUS MEM(MB) DISK(GB)); foreach my $rec (sort { $a->{vmid} <=> $b->{vmid} } @$vmlist) { printf "%10s %-20s %-10s %-10s %-12.2f\n", $rec->{vmid}, $rec->{name} || '', $rec->{status}, ($rec->{maxmem} || 0)/(1024*1024), ($rec->{maxdisk} || 0)/(1024*1024*1024); } } ], create => [ 'PVE::API2::OpenVZ', 'create_vm', ['vmid', 'ostemplate'], { node => $nodename } ], destroy => [ 'PVE::API2::OpenVZ', 'destroy_vm', ['vmid'], { node => $nodename } ], set => [ "PVE::API2::OpenVZ", 'update_vm', ['vmid'], { node => $nodename } ], config => [ "PVE::API2::OpenVZ", 'vm_config', ['vmid'], { node => $nodename }, sub { my $config = shift; foreach my $k (sort (keys %$config)) { next if $k eq 'digest'; my $v = $config->{$k}; if ($k eq 'description') { $v = PVE::Tools::encode_text($v); } print "$k: $v\n"; } }], start => [ 'PVE::API2::OpenVZ', 'vm_start', ['vmid'], { node => $nodename }, $upid_exit], stop => [ 'PVE::API2::OpenVZ', 'vm_stop', ['vmid'], { node => $nodename }, $upid_exit], }; my $cmd = shift; PVE::CLIHandler::handle_cmd($cmddef, "pvectl", $cmd, \@ARGV, undef, $0); exit 0; __END__ =head1 NAME pvectl - vzctl wrapper to manage OpenVZ containers =head1 SYNOPSIS =include synopsis =head1 DESCRIPTION This is a small wrapper around vztl. =include pve_copyright