aboutsummaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2015-04-11 16:29:58 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2015-04-14 11:41:17 -0500
commit62addf118067dd2cd57c3f5fee35c9e80f9fec42 (patch)
treea55a73d449c7e6064106e18364fbd447183d2e5b /init.d
parent1eab656ca1d3258ff00495710a68ad459ce50d3e (diff)
Move SELinux mount to sysfs service
The selinux file system is mounted under /sys, so move the code for it to the appropriate service. X-Gentoo-Bug: 546290 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=546290
Diffstat (limited to 'init.d')
-rw-r--r--init.d/procfs.in9
-rw-r--r--init.d/sysfs.in9
2 files changed, 9 insertions, 9 deletions
diff --git a/init.d/procfs.in b/init.d/procfs.in
index 636cd20b..e7d4fce7 100644
--- a/init.d/procfs.in
+++ b/init.d/procfs.in
@@ -60,14 +60,5 @@ start()
fi
fi
- # Setup Kernel Support for SELinux
- if [ -d /sys/fs/selinux ] && ! mountinfo -q /sys/fs/selinux; then
- if grep -qs selinuxfs /proc/filesystems; then
- ebegin "Mounting SELinux filesystem"
- mount -t selinuxfs selinuxfs /sys/fs/selinux
- eend $?
- fi
- fi
-
return 0
}
diff --git a/init.d/sysfs.in b/init.d/sysfs.in
index bc0d9d3d..6e52a9d5 100644
--- a/init.d/sysfs.in
+++ b/init.d/sysfs.in
@@ -82,6 +82,15 @@ mount_misc()
fi
fi
+ # Setup Kernel Support for SELinux
+ if [ -d /sys/fs/selinux ] && ! mountinfo -q /sys/fs/selinux; then
+ if grep -qs selinuxfs /proc/filesystems; then
+ ebegin "Mounting SELinux filesystem"
+ mount -t selinuxfs selinuxfs /sys/fs/selinux
+ eend $?
+ fi
+ fi
+
# setup up kernel support for efivarfs
# slightly complicated, as if it's build as a module but NOT yet loaded,
# it will NOT appear in /proc/filesystems yet