mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			763 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			763 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| echo 'Storage : ';
 | |
| 
 | |
| // Include all discovery modules
 | |
| $include_dir = 'includes/discovery/storage';
 | |
| require 'includes/include-dir.inc.php';
 | |
| 
 | |
| // Remove storage which weren't redetected here
 | |
| $sql = "SELECT * FROM `storage` WHERE `device_id`  = '".$device['device_id']."'";
 | |
| 
 | |
| d_echo($valid_storage);
 | |
| 
 | |
| foreach (dbFetchRows($sql) as $test_storage) {
 | |
|     $storage_index = $test_storage['storage_index'];
 | |
|     $storage_mib   = $test_storage['storage_mib'];
 | |
|     d_echo($storage_index.' -> '.$storage_mib."\n");
 | |
| 
 | |
|     if (!$valid_storage[$storage_mib][$storage_index]) {
 | |
|         echo '-';
 | |
|         dbDelete('storage', '`storage_id` = ?', array($test_storage['storage_id']));
 | |
|     }
 | |
| 
 | |
|     unset($storage_index);
 | |
|     unset($storage_mib);
 | |
| }
 | |
| 
 | |
| unset($valid_storage);
 | |
| echo "\n";
 |