mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-10 02:45:44 +00: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>
7 lines
95 B
Go
7 lines
95 B
Go
//go:build !remote
|
|
|
|
package libpod
|
|
|
|
func (r *Runtime) stopPauseProcess() error {
|
|
return nil
|
|
}
|