Rotek. serial sub for calling from Raisecom.

This commit is contained in:
Andrey Pazychev
2020-05-20 22:48:43 +03:00
parent a3f0109f06
commit 43ca61299e

View File

@@ -40,7 +40,7 @@ sub os {
sub os_ver {
my $obj = shift;
my $os_ver;
my $os_ver_oid = $obj->description();
my $os_ver_oid = $obj->description;
$os_ver_oid =~ /\,\s(.*)/;
$os_ver = $1;
@@ -61,6 +61,11 @@ sub model {
return $obj->SUPER::model();
}
sub serial {
my $obj = shift;
return $obj->SUPER::serial();
}
1;
__END__