mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	* refactor: OS Discovery files D-H * Combine edgeswitch check * fix my typo * update to fix tests
		
			
				
	
	
		
			11 lines
		
	
	
		
			153 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			153 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Supported Devides List
 | 
						|
 * OLT AN5516-06
 | 
						|
 * OLT AN5516-01
 | 
						|
 */
 | 
						|
if (preg_match('/^AN5516-0[16]$/', $sysDescr)) {
 | 
						|
        $os = "fiberhome";
 | 
						|
}
 |