mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 08:56:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			246 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			246 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build darwin || windows || freebsd
 | 
						|
 | 
						|
package util
 | 
						|
 | 
						|
import "errors"
 | 
						|
 | 
						|
// FindDeviceNodes is not implemented anywhere except Linux.
 | 
						|
func FindDeviceNodes() (map[string]string, error) {
 | 
						|
	return nil, errors.New("not supported on non-Linux OSes")
 | 
						|
}
 |