mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-06-15 23:05:09 +00:00
[no-change] sort and group module use
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
0600c3bf07
commit
7c2d9b4089
@ -8,31 +8,31 @@ use Getopt::Long qw(:config no_getopt_compat);
|
|||||||
|
|
||||||
use Fcntl ':flock';
|
use Fcntl ':flock';
|
||||||
use File::Path;
|
use File::Path;
|
||||||
use IO::Socket::UNIX;
|
|
||||||
use IO::Select;
|
use IO::Select;
|
||||||
use URI::Escape;
|
use IO::Socket::UNIX;
|
||||||
|
use JSON;
|
||||||
use POSIX qw(strftime);
|
use POSIX qw(strftime);
|
||||||
|
use Term::ReadLine;
|
||||||
|
use URI::Escape;
|
||||||
|
|
||||||
use PVE::Tools qw(extract_param);
|
|
||||||
use PVE::Cluster;
|
use PVE::Cluster;
|
||||||
use PVE::SafeSyslog;
|
|
||||||
use PVE::INotify;
|
|
||||||
use PVE::RPCEnvironment;
|
|
||||||
use PVE::Exception qw(raise_param_exc);
|
use PVE::Exception qw(raise_param_exc);
|
||||||
use PVE::Network;
|
|
||||||
use PVE::GuestHelpers;
|
use PVE::GuestHelpers;
|
||||||
use PVE::QemuServer;
|
use PVE::INotify;
|
||||||
|
use PVE::JSONSchema qw(get_standard_option);
|
||||||
|
use PVE::Network;
|
||||||
|
use PVE::RPCEnvironment;
|
||||||
|
use PVE::SafeSyslog;
|
||||||
|
use PVE::Tools qw(extract_param);
|
||||||
|
|
||||||
|
use PVE::API2::Qemu::Agent;
|
||||||
|
use PVE::API2::Qemu;
|
||||||
|
use PVE::QemuServer::Agent qw(agent_available);
|
||||||
use PVE::QemuServer::ImportDisk;
|
use PVE::QemuServer::ImportDisk;
|
||||||
use PVE::QemuServer::OVF;
|
use PVE::QemuServer::OVF;
|
||||||
use PVE::QemuServer::Agent qw(agent_available);
|
use PVE::QemuServer;
|
||||||
use PVE::API2::Qemu;
|
|
||||||
use PVE::API2::Qemu::Agent;
|
|
||||||
use JSON;
|
|
||||||
use PVE::JSONSchema qw(get_standard_option);
|
|
||||||
use Term::ReadLine;
|
|
||||||
|
|
||||||
use PVE::CLIHandler;
|
use PVE::CLIHandler;
|
||||||
|
|
||||||
use base qw(PVE::CLIHandler);
|
use base qw(PVE::CLIHandler);
|
||||||
|
|
||||||
my $upid_exit = sub {
|
my $upid_exit = sub {
|
||||||
|
@ -2,15 +2,15 @@ package PVE::QMPClient;
|
|||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use PVE::QemuServer;
|
|
||||||
use IO::Multiplex;
|
|
||||||
use POSIX qw(EINTR EAGAIN);
|
|
||||||
use JSON;
|
|
||||||
use Time::HiRes qw(usleep gettimeofday tv_interval);
|
|
||||||
use Scalar::Util qw(weaken);
|
|
||||||
use PVE::IPCC;
|
|
||||||
|
|
||||||
use Data::Dumper;
|
use IO::Multiplex;
|
||||||
|
use JSON;
|
||||||
|
use POSIX qw(EINTR EAGAIN);
|
||||||
|
use Scalar::Util qw(weaken);
|
||||||
|
use Time::HiRes qw(usleep gettimeofday tv_interval);
|
||||||
|
|
||||||
|
use PVE::IPCC;
|
||||||
|
use PVE::QemuServer;
|
||||||
|
|
||||||
# Qemu Monitor Protocol (QMP) client.
|
# Qemu Monitor Protocol (QMP) client.
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user