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);
};