
Rex::Commands::Inventory - Inventor your systems

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

use Data::Dumper;
task "inventory", "remoteserver", sub {
my $inventory = inventor();
print Dumper($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);
};