We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10327eb commit c3f2f16Copy full SHA for c3f2f16
libcontainer/specconv/spec_linux.go
@@ -648,6 +648,7 @@ func parseMountOptions(options []string) (int, []int, string, int) {
648
"dirsync": {false, unix.MS_DIRSYNC},
649
"exec": {true, unix.MS_NOEXEC},
650
"lazytime": {false, unix.MS_LAZYTIME},
651
+ "loud": {true, unix.MS_SILENT},
652
"mand": {false, unix.MS_MANDLOCK},
653
"noatime": {false, unix.MS_NOATIME},
654
"nodev": {false, unix.MS_NODEV},
@@ -663,6 +664,7 @@ func parseMountOptions(options []string) (int, []int, string, int) {
663
664
"remount": {false, unix.MS_REMOUNT},
665
"ro": {false, unix.MS_RDONLY},
666
"rw": {true, unix.MS_RDONLY},
667
+ "silent": {false, unix.MS_SILENT},
668
"strictatime": {false, unix.MS_STRICTATIME},
669
"suid": {true, unix.MS_NOSUID},
670
"sync": {false, unix.MS_SYNCHRONOUS},
0 commit comments