Rex::Commands::Inventory
Get an inventory of your systems
- Provided by: rex (Version: 1.3.3-1)
- Report a bug
Get an inventory of your systems
With this module you can get an inventory of your system.
All these functions will not be reported. These functions don't modify anything.
use Data::Dumper;
task "inventory", "remoteserver", sub {
my $inventory = inventory();
print Dumper($inventory);
};
This function returns a hashRef of all gathered hardware. Use the Data::Dumper module to see its structure.
task "get_inventory", sub {
my $inventory = inventory();
print Dumper($inventory);
};