mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	 2e70d4201f
			
		
	
	2e70d4201f
	
	
	
		
			
			Testing `podman system check` requires that we have a way to intentionally introduce storage corruptions. Add a hidden `podman testing` command that provides the necessary internal logic in subcommands. Stub out the tunnel implementation for now. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			251 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			251 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build !linux || remote
 | |
| // +build !linux remote
 | |
| 
 | |
| package main
 | |
| 
 | |
| import "github.com/containers/podman/v5/pkg/domain/entities"
 | |
| 
 | |
| const engineMode = entities.TunnelMode
 | |
| 
 | |
| func storeBefore() error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func storeAfter() error {
 | |
| 	return nil
 | |
| }
 |