| Probe-MachineInfo documentation | Contained in the Probe-MachineInfo distribution. |
Probe::MachineInfo::Distribution - Distribution Name
blah
blah
get()
Sagar R. Shah
| Probe-MachineInfo documentation | Contained in the Probe-MachineInfo distribution. |
package Probe::MachineInfo::Distribution; # pragmata use base qw(Probe::MachineInfo::Metric); use strict; use warnings; # Standard Perl Library and CPAN modules use English; use Linux::Distribution qw(distribution_name); # # CLASS ATTRIBUTES # # # CONSTRUCTOR #
sub get { my ($self) = @_; return distribution_name(); } 1;