NAME

Rex::Commands::Inventory - Inventor your systems

DESCRIPTION

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

All these functions will not be reported. These functions don't change things.

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 = inventory();
  print Dumper($inventory);
};