mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
b97ff07aa8
Newer vyos reports back as all lower case so making the check case-insensitive.
10 lines
153 B
PHP
10 lines
153 B
PHP
<?php
|
|
|
|
if (!$os || $os == "vyatta") {
|
|
if (preg_match("/^Vyatta VyOS/", $sysDescr) || preg_match("/^VyOS/i", $sysDescr)) {
|
|
$os = "vyos";
|
|
}
|
|
}
|
|
|
|
?>
|