mirror of
https://github.com/containers/podman.git
synced 2025-05-21 17:16:22 +08:00

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
|
|
}
|