You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
305 B
19 lines
305 B
9 years ago
|
package Zabbix::Agent::Addons::UPS;
|
||
|
|
||
|
use warnings;
|
||
|
use strict;
|
||
|
use File::Which;
|
||
|
|
||
|
# List configured UPS (only nut is supported)
|
||
|
sub list_ups {
|
||
|
my @ups = ();
|
||
|
my $upsc = which('upsc');
|
||
|
if ($upsc && -x $upsc){
|
||
|
my @out = qx($upsc -l);
|
||
|
if ($? == 0){
|
||
|
@ups = @out;
|
||
|
}
|
||
|
}
|
||
|
return @ups;
|
||
|
};
|