diff options
Diffstat (limited to 'cmd/podman/libpodruntime')
-rw-r--r-- | cmd/podman/libpodruntime/runtime.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/podman/libpodruntime/runtime.go b/cmd/podman/libpodruntime/runtime.go index af6be0602..ec105719f 100644 --- a/cmd/podman/libpodruntime/runtime.go +++ b/cmd/podman/libpodruntime/runtime.go @@ -125,12 +125,12 @@ func GetRuntimeWithStorageOpts(c *cli.Context, storageOpts *storage.StoreOptions // TODO flag to set CNI plugins dir? // Pod create options - if c.IsSet("pause-image") { - options = append(options, libpod.WithDefaultPauseImage(c.String("pause-image"))) + if c.IsSet("infra-image") { + options = append(options, libpod.WithDefaultInfraImage(c.String("infra-image"))) } - if c.IsSet("pause-command") { - options = append(options, libpod.WithDefaultPauseCommand(c.String("pause-command"))) + if c.IsSet("infra-command") { + options = append(options, libpod.WithDefaultInfraCommand(c.String("infra-command"))) } return libpod.NewRuntime(options...) |