summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-07-20 14:18:03 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2021-07-20 16:36:10 -0400
commitdb2f474284b18b4a2d9c3671278500c92a9c19d7 (patch)
tree8abefd02a00c90e1bb2822d013dc0f2f1e2751d9 /libpod
parent389c9b8dca942fb4977823dd504d3d351cb92acd (diff)
downloadpodman-db2f474284b18b4a2d9c3671278500c92a9c19d7.tar.gz
podman-db2f474284b18b4a2d9c3671278500c92a9c19d7.tar.bz2
podman-db2f474284b18b4a2d9c3671278500c92a9c19d7.zip
Drop podman create --storage-opt container flag
The global flag will work in either location, and this flag just breaks users expectations, and is basically a noop. Also fix global storage-opt so that podman-remote can use it. [NO TESTS NEEDED] Since it would be difficult to test in ci/cd. Fixes: https://github.com/containers/podman/issues/10264 Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r--libpod/container_internal.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go
index 2555f15ec..e7694227a 100644
--- a/libpod/container_internal.go
+++ b/libpod/container_internal.go
@@ -420,7 +420,6 @@ func (c *Container) setupStorage(ctx context.Context) error {
if c.config.Rootfs == "" && (c.config.RootfsImageID == "" || c.config.RootfsImageName == "") {
return errors.Wrapf(define.ErrInvalidArg, "must provide image ID and image name to use an image")
}
-
options := storage.ContainerOptions{
IDMappingOptions: storage.IDMappingOptions{
HostUIDMapping: true,