The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Rex::Commands::Inventory - Inventor your systems

DESCRIPTION

With this module you can get an inventory of your system.

SYNOPSIS

 use Data::Dumper;
 task "inventory", "remoteserver", sub {
    my $inventory = inventor();
    print Dumper($inventory);
 };

EXPORTED FUNCTIONS

inventory

This function returns an hashRef of all gathered hardware. Use the Data::Dumper module to see its structure.

 task "get-inventory", sub {
    my $inventory = inventor();
    print Dumper($inventory);
 };