str_contains -> starts_with

This commit is contained in:
Tony Murray 2016-11-01 09:38:41 -05:00 committed by GitHub
parent 57c6f76930
commit 685c9eb9b8

View File

@ -23,6 +23,6 @@
* @author Neil Lathwood <neil@lathwood.co.uk>
*/
if (str_contains($sysObjectId, '.1.3.6.1.4.1.10418.18.21.17')) {
if (starts_with($sysObjectId, '.1.3.6.1.4.1.10418.18.21.17')) {
$os = 'dell-rcs';
}