mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
6 lines
167 B
PHP
6 lines
167 B
PHP
<?php
|
|
|
|
$version = preg_replace("/.+ version (.+) running on .+ (\S+)$/", "\\1||\\2", $poll_device['sysDescr']);
|
|
list($version,$hardware) = explode("||", $version);
|
|
|
|
?>
|