Files
podman/libpod/runtime_migrate_freebsd.go
Doug Rabson 0463ad12cb libpod: fix a confusing error message from 'podman system reset' on FreeBSD
This was discovered by a user while testing Podman on FreeBSD
(oci-playground/freebsd-podman-testing/issues/17). The error message
didn't stop 'podman system reset' from working and this commit simply
suppressses the error on FreeBSD.

Signed-off-by: Doug Rabson <dfr@rabson.org>
2025-02-11 15:13:29 +00:00

8 lines
95 B
Go

//go:build !remote
package libpod
func (r *Runtime) stopPauseProcess() error {
return nil
}