diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-09-19 15:11:42 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-09-19 20:53:32 +0000 |
commit | cf13fa1866c7669c389c45b4cabb8c36255d1fa0 (patch) | |
tree | 290d5f08589cc2d264c150782e073760a23ecc9c /vendor | |
parent | 129c1408f70ad44cc84a8992d81b9f972609c694 (diff) | |
download | podman-cf13fa1866c7669c389c45b4cabb8c36255d1fa0.tar.gz podman-cf13fa1866c7669c389c45b4cabb8c36255d1fa0.tar.bz2 podman-cf13fa1866c7669c389c45b4cabb8c36255d1fa0.zip |
Vendor in latest opencontainers/runtime-tools
This will cause /proc inside of the container to match the mount options
of the host.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #1511
Approved by: baude
Diffstat (limited to 'vendor')
-rw-r--r-- | vendor/github.com/opencontainers/runtime-tools/generate/generate.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/opencontainers/runtime-tools/generate/generate.go b/vendor/github.com/opencontainers/runtime-tools/generate/generate.go index 900278f9f..955a9d5f9 100644 --- a/vendor/github.com/opencontainers/runtime-tools/generate/generate.go +++ b/vendor/github.com/opencontainers/runtime-tools/generate/generate.go @@ -162,7 +162,7 @@ func New(os string) (generator Generator, err error) { Destination: "/proc", Type: "proc", Source: "proc", - Options: nil, + Options: []string{"nosuid", "noexec", "nodev"}, }, { Destination: "/dev", |