mirror of
https://github.com/containers/podman.git
synced 2025-05-17 15:18:43 +08:00

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>
8 lines
95 B
Go
8 lines
95 B
Go
//go:build !remote
|
|
|
|
package libpod
|
|
|
|
func (r *Runtime) stopPauseProcess() error {
|
|
return nil
|
|
}
|