Files
librenms-librenms/includes/polling/os/qtech.inc.php
2020-05-10 22:08:07 +02:00

11 lines
346 B
PHP

<?php
preg_match('/^(.*) Device, Compiled /', $device['sysDescr'], $matches);
$hardware = $matches[1];
preg_match('/^ SoftWare Version (?:' . $hardware . '_)?(.*)$/m', $device['sysDescr'], $matches);
$version = $matches[1];
preg_match('/^ (?: Serial No\.:|Device serial number )(.*)$/m', $device['sysDescr'], $matches);
$serial = $matches[1];