Detect vcsa as vmware instead of generic

This commit is contained in:
Jimmy
2015-10-21 11:39:59 +02:00
parent 55fbf48a6d
commit a9e2582da3

View File

@@ -4,4 +4,7 @@ if (!$os) {
if (preg_match('/^VMware ESX/', $sysDescr)) {
$os = 'vmware';
}
if (preg_match('/^VMware-vCenter-Server-Appliance/', $sysDescr)) {
$os = 'vmware';
}
}