aboutsummaryrefslogtreecommitdiff
path: root/libpod/runtime_migrate_unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/runtime_migrate_unsupported.go')
-rw-r--r--libpod/runtime_migrate_unsupported.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/libpod/runtime_migrate_unsupported.go b/libpod/runtime_migrate_unsupported.go
new file mode 100644
index 000000000..77c2737a9
--- /dev/null
+++ b/libpod/runtime_migrate_unsupported.go
@@ -0,0 +1,16 @@
+//go:build !linux
+// +build !linux
+
+package libpod
+
+import (
+ "errors"
+)
+
+func (r *Runtime) stopPauseProcess() error {
+ return errors.New("not implemented (*Runtime) stopPauseProcess")
+}
+
+func (r *Runtime) migrate() error {
+ return errors.New("not implemented (*Runtime) migrate")
+}