diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-05-09 19:06:46 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-05-17 20:48:25 +0200 |
commit | 9dabb16e6541a1b7bbb1c5a27a91e08863a5b491 (patch) | |
tree | fef3ec3b008101fbf4f056df03d16ec07be904fe /libpod/runtime_migrate_unsupported.go | |
parent | 562357ebb26cacbe9a97c8c0a87c9524345158d0 (diff) | |
download | podman-9dabb16e6541a1b7bbb1c5a27a91e08863a5b491.tar.gz podman-9dabb16e6541a1b7bbb1c5a27a91e08863a5b491.tar.bz2 podman-9dabb16e6541a1b7bbb1c5a27a91e08863a5b491.zip |
system: migrate stops the pause process
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'libpod/runtime_migrate_unsupported.go')
-rw-r--r-- | libpod/runtime_migrate_unsupported.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libpod/runtime_migrate_unsupported.go b/libpod/runtime_migrate_unsupported.go new file mode 100644 index 000000000..1a9e46fdc --- /dev/null +++ b/libpod/runtime_migrate_unsupported.go @@ -0,0 +1,11 @@ +// +build !linux + +package libpod + +import ( + "context" +) + +func (r *Runtime) migrate(ctx context.Context) error { + return nil +} |