mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Don't include null os when loading defs (#14312)
This commit is contained in:
@@ -67,7 +67,7 @@ class OS
|
|||||||
$os_defs = unserialize(file_get_contents($cache_file));
|
$os_defs = unserialize(file_get_contents($cache_file));
|
||||||
if ($existing) {
|
if ($existing) {
|
||||||
// remove unneeded os
|
// remove unneeded os
|
||||||
$exists = Device::query()->distinct()->pluck('os')->flip()->all();
|
$exists = Device::query()->whereNotNull('os')->distinct()->pluck('os')->flip()->all();
|
||||||
$os_defs = array_intersect_key($os_defs, $exists);
|
$os_defs = array_intersect_key($os_defs, $exists);
|
||||||
}
|
}
|
||||||
\LibreNMS\Config::set('os', array_replace_recursive($os_defs, \LibreNMS\Config::get('os')));
|
\LibreNMS\Config::set('os', array_replace_recursive($os_defs, \LibreNMS\Config::get('os')));
|
||||||
|
Reference in New Issue
Block a user