github.com/containers/podman/v4@v4.9.4/libpod/runtime_migrate_unsupported.go (about)

     1  //go:build !remote && !linux
     2  // +build !remote,!linux
     3  
     4  package libpod
     5  
     6  import (
     7  	"errors"
     8  )
     9  
    10  func (r *Runtime) stopPauseProcess() error {
    11  	return errors.New("not implemented (*Runtime) stopPauseProcess")
    12  }
    13  
    14  func (r *Runtime) Migrate(newRuntime string) error {
    15  	return errors.New("not implemented (*Runtime) migrate")
    16  }