mirror of
https://github.com/containers/podman.git
synced 2025-05-17 06:59:07 +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>
12 lines
193 B
Go
12 lines
193 B
Go
//go:build !remote && !linux && !freebsd
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func (r *Runtime) stopPauseProcess() error {
|
|
return errors.New("not implemented (*Runtime) stopPauseProcess")
|
|
}
|