mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-02-08 05:57:33 +03:00
15 lines
316 B
Perl
Executable File
15 lines
316 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use lib '.';
|
|
use strict;
|
|
use warnings;
|
|
use PVE::RESTHandler;
|
|
use PVE::QemuServer::CPUConfig;
|
|
|
|
my $prop = PVE::QemuServer::CPUConfig::add_cpu_json_properties({});
|
|
|
|
# cputype is given as section header and explained seperately
|
|
delete $prop->{cputype};
|
|
|
|
print PVE::RESTHandler::dump_properties($prop);
|