mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added detection for Samsung C series printers
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
<?php
|
||||
if (!$os) {
|
||||
if (strstr($sysDescr, 'Samsung CLX') || strstr($sysDescr, 'Samsung SCX')) {
|
||||
$os = 'samsungprinter';
|
||||
if (strstr($sysDescr, 'Samsung CLX') ||
|
||||
strstr($sysDescr, 'Samsung SCX') ||
|
||||
strstr($sysDescr, 'Samsun C')) {
|
||||
$os = 'samsungprinter';
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user