diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2018-12-12 11:56:19 +0100 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2018-12-12 11:57:30 +0100 |
commit | a609e026a5f58d935a25e558480ed314783062fc (patch) | |
tree | f97444d165e8acdfdf12082eab0500d267b07386 /cmd/podman/main.go | |
parent | 8a3361f46c87933aff04c9acaaf48b7c130bc9d8 (diff) | |
download | podman-a609e026a5f58d935a25e558480ed314783062fc.tar.gz podman-a609e026a5f58d935a25e558480ed314783062fc.tar.bz2 podman-a609e026a5f58d935a25e558480ed314783062fc.zip |
mount: allow mount only when using vfs
when using a driver different than vfs, the mount is probably in a
different mount namespace thus not accessible from the host. Avoid
the confusion by not allowing mount when a different driver is used.
Closes: https://github.com/containers/libpod/issues/1964
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'cmd/podman/main.go')
-rw-r--r-- | cmd/podman/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/main.go b/cmd/podman/main.go index 796b0b03a..2db6c5dec 100644 --- a/cmd/podman/main.go +++ b/cmd/podman/main.go @@ -34,6 +34,7 @@ var cmdsNotRequiringRootless = map[string]bool{ // If this change, please also update libpod.refreshRootless() "login": true, "logout": true, + "mount": true, "kill": true, "pause": true, "restart": true, |