mirror of
https://git.proxmox.com/git/pve-docs
synced 2025-04-28 16:07:15 +00:00
11 lines
190 B
Perl
Executable File
11 lines
190 B
Perl
Executable File
#!/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);
|