summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-05-21 16:26:20 +0200
committerGitHub <noreply@github.com>2020-05-21 16:26:20 +0200
commit835d2644b85a70d8483df44e93397beabf6518a0 (patch)
tree7ea9dd720282f9a354a5356a647515cc74e6ff44 /pkg
parent8b49d10550d32e066bc834768a44d6c848f4db3e (diff)
parentcc65430145aee98ffefc4b9a505793e470134e94 (diff)
downloadpodman-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')
-rw-r--r--pkg/util/mountOpts_linux.go2
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
}