mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-02-03 13:47:08 +03:00
12 lines
184 B
Perl
12 lines
184 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
use PVE::Firewall;
|
||
|
use PVE::RESTHandler;
|
||
|
|
||
|
my $prop = $PVE::Firewall::vm_option_properties;
|
||
|
|
||
|
print PVE::RESTHandler::dump_properties($prop);
|