mirror of
https://git.proxmox.com/git/pve-docs
synced 2025-04-28 10:01:45 +00:00
13 lines
202 B
Perl
Executable File
13 lines
202 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use lib '.';
|
|
use strict;
|
|
use warnings;
|
|
|
|
use PVE::Firewall;
|
|
use PVE::RESTHandler;
|
|
|
|
my $prop = $PVE::Firewall::cluster_option_properties;
|
|
|
|
print PVE::RESTHandler::dump_properties($prop);
|