mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-07-26 21:30:54 +00:00
14 lines
253 B
Perl
Executable File
14 lines
253 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use PVE::CLI::pveum;
|
|
|
|
my $prepare = sub {
|
|
# autmatically generate the private key if it does not already exists
|
|
PVE::Cluster::gen_auth_key();
|
|
};
|
|
|
|
PVE::CLI::pveum->run_cli_handler(prepare => $prepare);
|