mirror of
https://git.proxmox.com/git/pmg-docs
synced 2025-08-05 17:27:40 +00:00
18 lines
277 B
Perl
Executable File
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);
|