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