diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-21 16:26:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 16:26:20 +0200 |
commit | 835d2644b85a70d8483df44e93397beabf6518a0 (patch) | |
tree | 7ea9dd720282f9a354a5356a647515cc74e6ff44 /pkg/util/mountOpts_linux.go | |
parent | 8b49d10550d32e066bc834768a44d6c848f4db3e (diff) | |
parent | cc65430145aee98ffefc4b9a505793e470134e94 (diff) | |
download | podman-835d2644b85a70d8483df44e93397beabf6518a0.tar.gz podman-835d2644b85a70d8483df44e93397beabf6518a0.tar.bz2 podman-835d2644b85a70d8483df44e93397beabf6518a0.zip |
Merge pull request #6280 from mheon/switch_off_noexec
Turn off 'noexec' option by default for named volumes
Diffstat (limited to 'pkg/util/mountOpts_linux.go')
-rw-r--r-- | pkg/util/mountOpts_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/util/mountOpts_linux.go b/pkg/util/mountOpts_linux.go index 3eac4dd25..bc7c675f3 100644 --- a/pkg/util/mountOpts_linux.go +++ b/pkg/util/mountOpts_linux.go @@ -7,7 +7,7 @@ import ( ) func getDefaultMountOptions(path string) (defaultMountOptions, error) { - opts := defaultMountOptions{true, true, true} + opts := defaultMountOptions{false, true, true} if path == "" { return opts, nil } |