diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-08-23 19:05:16 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-08-28 14:28:18 -0400 |
commit | 96812dc490dbd00b0ec6280353a4e78ba79b44b8 (patch) | |
tree | 9205756a59c278a7d1e6dcd5409549e8a8b62978 /pkg/util | |
parent | 820e242e821efda218031b75fce01625a20baa54 (diff) | |
download | podman-96812dc490dbd00b0ec6280353a4e78ba79b44b8.tar.gz podman-96812dc490dbd00b0ec6280353a4e78ba79b44b8.tar.bz2 podman-96812dc490dbd00b0ec6280353a4e78ba79b44b8.zip |
Fix addition of mount options when using RO tmpfs
For read-only containers set to create tmpfs filesystems over
/run and other common destinations, we were incorrectly setting
mount options, resulting in duplicate mount options.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'pkg/util')
-rw-r--r-- | pkg/util/mountOpts.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/util/mountOpts.go b/pkg/util/mountOpts.go index 9e387ce95..670daeaf9 100644 --- a/pkg/util/mountOpts.go +++ b/pkg/util/mountOpts.go @@ -10,7 +10,7 @@ var ( // ErrBadMntOption indicates that an invalid mount option was passed. ErrBadMntOption = errors.Errorf("invalid mount option") // ErrDupeMntOption indicates that a duplicate mount option was passed. - ErrDupeMntOption = errors.Errorf("duplicate option passed") + ErrDupeMntOption = errors.Errorf("duplicate mount option passed") ) // DefaultMountOptions sets default mount options for ProcessOptions. |