]> git.proxmox.com Git - pve-access-control.git/blame_incremental - pveum
change from dpkg-deb to dpkg-buildpackage
[pve-access-control.git] / pveum
... / ...
CommitLineData
1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use PVE::CLI::pveum;
7
8my $prepare = sub {
9 # autmatically generate the private key if it does not already exists
10 PVE::Cluster::gen_auth_key();
11};
12
13PVE::CLI::pveum->run_cli_handler(prepare => $prepare);