Changed OS name to "Xirrus ArrayOS" and internal OS name to 'xirrus_os'.

This commit is contained in:
Rick Hodger
2016-05-26 18:03:05 +01:00
parent ae23432138
commit 31d4a29359
2 changed files with 5 additions and 3 deletions

View File

@@ -1672,8 +1672,8 @@ $config['os'][$os]['over'][0]['graph'] = 'device_bits';
$config['os'][$os]['over'][0]['text'] = 'Device Traffic';
// Xirrus AP
$os = 'xirrus';
$config['os'][$os]['text'] = 'Xirrus';
$os = 'xirrus_aos';
$config['os'][$os]['text'] = 'Xirrus ArrayOS';
$config['os'][$os]['type'] = 'wireless';
$config['os'][$os]['icon'] = 'xirrus';
$config['os'][$os]['over'][0]['graph'] = 'device_bits';

View File

@@ -2,7 +2,9 @@
if(!$os) {
if (strstr($sysDescr, 'Xirrus')) {
$os = 'xirrus';
if (strstr($sysDescr, 'ArrayOS')) {
$os = 'xirrus_aos';
}
}
}