2018-01-07 05:00:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
2020-05-14 11:27:59 -05:00
|
|
|
use LibreNMS\OS;
|
2021-10-19 15:43:43 -05:00
|
|
|
use LibreNMS\OS\Generic;
|
2020-05-14 11:27:59 -05:00
|
|
|
|
2021-10-19 15:43:43 -05:00
|
|
|
// start assuming no os
|
|
|
|
|
(new \LibreNMS\Modules\Core())->discover(Generic::make($device));
|
2021-10-08 14:04:11 -05:00
|
|
|
|
2021-10-19 15:43:43 -05:00
|
|
|
// then create with actual OS
|
2020-05-14 11:27:59 -05:00
|
|
|
$os = OS::make($device);
|