diff --git a/includes/polling/os/unix.inc.php b/includes/polling/os/unix.inc.php index 7287cddad9..5feb165441 100755 --- a/includes/polling/os/unix.inc.php +++ b/includes/polling/os/unix.inc.php @@ -37,6 +37,10 @@ if ($device['os'] == "linux" || $device['os'] == "endian") if ($agent_data['dmi']['system-product-name']) { $hardware = ($agent_data['dmi']['system-manufacturer'] ? $agent_data['dmi']['system-manufacturer'] . ' ' : '') . $agent_data['dmi']['system-product-name']; + + # Clean up "Dell Computer Corporation" and "Intel Corporation" + $hardware = str_replace(" Computer Corporation","",$hardware); + $hardware = str_replace(" Corporation","",$hardware); } if ($agent_data['dmi']['system-serial-number'])