. * * @package LibreNMS * @link https://www.librenms.org * @copyright 2020 Tony Murray * @author Tony Murray */ namespace LibreNMS\OS; use App\Models\Device; class Valere extends \LibreNMS\OS { public function discoverOS(Device $device): void { parent::discoverOS($device); // yaml $device->features = implode(', ', explode(PHP_EOL, snmp_walk($this->getDeviceArray(), 'vpwrModuleOID', '-Oqvs', 'ELTEK-BC2000-DC-POWER-MIB'))); } }