mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-05-29 21:06:15 +00:00
14 lines
171 B
Perl
Executable File
14 lines
171 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
use PVE::AccessControl;
|
|
use Data::Dumper;
|
|
|
|
my $cfg;
|
|
|
|
$cfg = PVE::AccessControl::load_user_config();
|
|
|
|
print Dumper($cfg) . "\n";
|
|
|
|
exit (0);
|