1
0
mirror of https://github.com/rancher/os.git synced 2025-09-13 21:51:33 +00:00

Looks like /sys/fs/selinux should be mounted ro

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
This commit is contained in:
Sven Dowideit
2017-02-17 18:31:02 +00:00
parent db5da1ebfe
commit 3133664a11

View File

@@ -38,7 +38,7 @@ var (
{"none", "/sys/fs/cgroup", "tmpfs", ""}, {"none", "/sys/fs/cgroup", "tmpfs", ""},
} }
optionalMounts = [][]string{ optionalMounts = [][]string{
{"none", "/sys/fs/selinux", "selinuxfs", ""}, {"none", "/sys/fs/selinux", "selinuxfs", "ro"},
} }
) )