]> git.proxmox.com Git - pmg-docs.git/blame - gen-cluster.conf.5-opts.pl
add SSL ceriticate generation doc
[pmg-docs.git] / gen-cluster.conf.5-opts.pl
CommitLineData
0802e594
DM
1#!/usr/bin/perl
2
3use lib '.';
4use strict;
5use warnings;
6use PVE::RESTHandler;
7
8use Data::Dumper;
9
10use PMG::ClusterConfig;
11
12my $schema = PMG::ClusterConfig::Base->createSchema(1);
13my $properties = $schema->{properties};
14
15
16print PVE::RESTHandler::dump_properties($properties);
17
18exit(0);