The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
use v5.12.5;
our $VERSION = '1.16.0'; # VERSION
sub get {
if ( Rex::Hardware::Host::get_operating_system() eq "SunOS" ) {
return Rex::Inventory::SMBios->new;
}
else {
return Rex::Inventory::DMIDecode->new;
}
}
1;