diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-26 07:58:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-26 07:58:25 +0000 |
commit | f82f93c9bdaca49765019966df43384d34469575 (patch) | |
tree | 6b3907947aa49553ace7642034632b0ad8206157 /libpod/runtime_ctr.go | |
parent | dbe770e3ce2ac2e34ffa8e28b80df57eb0182a68 (diff) | |
parent | a42c131c80fc8c7220687c56cf4384a224572ca0 (diff) | |
download | podman-f82f93c9bdaca49765019966df43384d34469575.tar.gz podman-f82f93c9bdaca49765019966df43384d34469575.tar.bz2 podman-f82f93c9bdaca49765019966df43384d34469575.zip |
Merge pull request #12084 from rhatdan/VENDOR
Update vendor github.com/opencontainers/runtime-tools
Diffstat (limited to 'libpod/runtime_ctr.go')
-rw-r--r-- | libpod/runtime_ctr.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime_ctr.go b/libpod/runtime_ctr.go index 2256ba57c..0a7db33f1 100644 --- a/libpod/runtime_ctr.go +++ b/libpod/runtime_ctr.go @@ -389,7 +389,7 @@ func (r *Runtime) setupContainer(ctx context.Context, ctr *Container) (_ *Contai if ctr.restoreFromCheckpoint { // Remove information about bind mount // for new container from imported checkpoint - g := generate.Generator{Config: ctr.config.Spec} + g := generate.NewFromSpec(ctr.config.Spec) g.RemoveMount("/dev/shm") ctr.config.ShmDir = "" g.RemoveMount("/etc/resolv.conf") |