mirror of
https://github.com/containers/podman.git
synced 2025-10-17 19:24:04 +08:00
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>
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
//go:build !remote && !linux
|
||||
//go:build !remote && !linux && !freebsd
|
||||
|
||||
package libpod
|
||||
|
||||
@ -9,7 +9,3 @@ import (
|
||||
func (r *Runtime) stopPauseProcess() error {
|
||||
return errors.New("not implemented (*Runtime) stopPauseProcess")
|
||||
}
|
||||
|
||||
func (r *Runtime) Migrate(newRuntime string) error {
|
||||
return errors.New("not implemented (*Runtime) migrate")
|
||||
}
|
||||
|
Reference in New Issue
Block a user