mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
18 lines
367 B
Go
18 lines
367 B
Go
--- libpod/runtime_migrate_freebsd.go.orig 2024-10-03 14:39:32 UTC
|
|
+++ libpod/runtime_migrate_freebsd.go
|
|
@@ -0,0 +1,15 @@
|
|
+//go:build !remote
|
|
+
|
|
+package libpod
|
|
+
|
|
+import (
|
|
+ "errors"
|
|
+)
|
|
+
|
|
+func (r *Runtime) stopPauseProcess() error {
|
|
+ return nil
|
|
+}
|
|
+
|
|
+func (r *Runtime) Migrate(newRuntime string) error {
|
|
+ return errors.New("not implemented (*Runtime) migrate")
|
|
+}
|