pmg-docs/gen-ldap.conf.5-opts.pl
2018-01-09 12:14:39 +01:00

18 lines
277 B
Perl
Executable File

#!/usr/bin/perl
use lib '.';
use strict;
use warnings;
use PVE::RESTHandler;
use Data::Dumper;
use PMG::LDAPConfig;
my $schema = PMG::LDAPConfig->createSchema(1);
my $properties = $schema->{properties};
print PVE::RESTHandler::dump_properties($properties);
exit(0);