mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 08:56:05 +08:00 
			
		
		
		
	Update the login tests to reflect the latest changes to allow http{s}
prefixes (again) to address bugzilla.redhat.com/show_bug.cgi?id=2062072.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			235 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			235 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build !linux && !solaris && !windows
 | 
						|
// +build !linux,!solaris,!windows
 | 
						|
 | 
						|
package sysinfo
 | 
						|
 | 
						|
// New returns an empty SysInfo for non linux nor solaris for now.
 | 
						|
func New(quiet bool) *SysInfo {
 | 
						|
	sysInfo := &SysInfo{}
 | 
						|
	return sysInfo
 | 
						|
}
 |