librenms/includes/discovery/os/netmanplus.inc.php

8 lines
194 B
PHP
Raw Normal View History

<?php
2016-09-22 22:26:54 +00:00
if (starts_with($sysDescr, 'NetMan') && str_contains($sysDescr, 'plus')) {
$os = 'netmanplus';
2016-09-23 21:30:53 +00:00
} elseif (starts_with($sysObjectId, '.1.3.6.1.4.1.5491.6')) {
2016-09-22 22:26:54 +00:00
$os = 'netmanplus';
2015-07-13 18:10:26 +00:00
}