mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-17 08:03:36 +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);
|
|
|
|
?>
|