misc: add dead notices, patch by Corentin Chary

git-svn-id: http://www.observium.org/svn/observer/trunk@1795 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Tom Laermans 2011-03-07 11:08:08 +00:00
parent a2a6ee0947
commit f7a314e4e9
3 changed files with 5 additions and 0 deletions

View File

@ -1,4 +1,6 @@
<?php
/* FIXME: dead file */
$id = $device['device_id'];
$hostname = $device['hostname'];
$community = $device['community'];

View File

@ -1,4 +1,5 @@
<?php
/* FIXME: dead file */
echo("Physical Inventory : ");

View File

@ -1,5 +1,7 @@
<?php
/* FIXME: dead file */
if($device['os_group'] == "ios") {
$portifIndex = array();
$cmd = ($device['snmpver'] == 'v1' ? $config['snmpwalk'] : $config['snmpbulkwalk']) . " -M ".$config['mibdir']. " -CI -m CISCO-STACK-MIB -O q -" . $device['snmpver'] . " -c " . $device['community'] . " " . $device['hostname'].":".$device['port'] . " portIfIndex";