. * * @link https://www.librenms.org * * @copyright 2022 Tony Murray * @author Tony Murray */ namespace LibreNMS\OS; use App\Models\Device; use LibreNMS\OS\Shared\Unix; class Aix extends Unix { public function discoverOS(Device $device): void { // don't support server hardware detection or extends $this->discoverYamlOS($device); } }