]> git.proxmox.com Git - pve-docs.git/blame - gen-ha-groups-opts.pl
pvecm: fix wrong quorum numbers
[pve-docs.git] / gen-ha-groups-opts.pl
CommitLineData
206c2476
DM
1#!/usr/bin/perl
2
3use lib '.';
4use strict;
5use warnings;
6use PVE::RESTHandler;
7
8use Data::Dumper;
9
10use PVE::HA::Groups;
11
12
13my $private = PVE::HA::Groups::private();
14my $properies = $private->{propertyList};
15delete $properies->{type};
16delete $properies->{group};
17
18print PVE::RESTHandler::dump_properties($properies);