Rex::Hardware
Base Class for hardware / information gathering
- Provided by: rex (Version: 1.3.3-1)
- Report a bug
Base Class for hardware / information gathering
This module is the base class for hardware/information gathering.
use Rex::Hardware; my %host_info = Rex::Hardware->get(qw/ Host /); my %all_info = Rex::Hardware->get(qw/ All /);
Returns a hash with the wanted information.
task "get-info", "server1", sub {
%hw_info = Rex::Hardware->get(qw/ Host Network /);
};
Or if you want to get all information
task "get-all-info", "server1", sub {
%hw_info = Rex::Hardware->get(qw/ All /);
};
Available modules: