diff options
Diffstat (limited to 'cmd/podman/restart.go')
-rw-r--r-- | cmd/podman/restart.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/restart.go b/cmd/podman/restart.go index 7eb168743..e01a76fd0 100644 --- a/cmd/podman/restart.go +++ b/cmd/podman/restart.go @@ -5,6 +5,7 @@ import ( "os" "github.com/pkg/errors" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" "github.com/projectatomic/libpod/libpod" "github.com/urfave/cli" ) @@ -41,7 +42,7 @@ func restartCmd(c *cli.Context) error { return err } - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "error creating libpod runtime") } |