mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-02-01 05:47:08 +03:00
11 lines
190 B
Perl
11 lines
190 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
use PVE::RESTHandler;
|
||
|
use PVE::QemuServer;
|
||
|
|
||
|
my $prop = PVE::QemuServer::json_config_properties();
|
||
|
|
||
|
print PVE::RESTHandler::dump_properties($prop);
|