mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
19 lines
408 B
PHP
19 lines
408 B
PHP
<?php
|
|
|
|
if ($config['enable_inventory']) {
|
|
// Cisco
|
|
if ($device['os'] == 'ios') {
|
|
include 'includes/polling/entity-physical/ios.inc.php';
|
|
}
|
|
|
|
// Cisco CIMC
|
|
if ($device['os'] == 'cimc') {
|
|
include 'includes/polling/entity-physical/cimc.inc.php';
|
|
}
|
|
|
|
// Update State
|
|
include 'includes/polling/entity-physical/state.inc.php';
|
|
} else {
|
|
echo 'Disabled!';
|
|
}//end if
|