mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
12 lines
243 B
PHP
12 lines
243 B
PHP
<?php
|
|
|
|
if (starts_with($sysDescr, 'SunOS')) {
|
|
list(,,$version) = explode(' ', $sysDescr);
|
|
|
|
if (version_compare($version, '5.10', '>')) {
|
|
if (!str_contains($sysDescr, 'oi_')) {
|
|
$os = 'opensolaris';
|
|
}
|
|
}
|
|
}
|