mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-04-28 13:20:47 +00:00
25 lines
302 B
Perl
Executable File
25 lines
302 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use PVE::Report;
|
|
|
|
($> == 0 ) || die "please run as root\n";
|
|
|
|
print PVE::Report::generate();
|
|
|
|
__END__
|
|
|
|
=head1 NAME
|
|
|
|
pvereport - Proxmox VE Report tool
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
pvereport
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Display various information related to a Proxmox VE system
|