aboutsummaryrefslogtreecommitdiffstats
path: root/systemd/fedora-readonly
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2011-08-30 15:17:14 -0400
committerBill Nottingham <notting@redhat.com>2011-08-30 15:17:14 -0400
commit8e35de888bde8b123bf19c23cb4e8974cb75475e (patch)
treec3a7017cffa43162029b960ca8a04dd611387319 /systemd/fedora-readonly
parent588b435f07ef70684d7979b0472b8a0aabe44d71 (diff)
downloadinitscripts-8e35de888bde8b123bf19c23cb4e8974cb75475e.tar
initscripts-8e35de888bde8b123bf19c23cb4e8974cb75475e.tar.gz
initscripts-8e35de888bde8b123bf19c23cb4e8974cb75475e.tar.bz2
initscripts-8e35de888bde8b123bf19c23cb4e8974cb75475e.tar.xz
initscripts-8e35de888bde8b123bf19c23cb4e8974cb75475e.zip
selinuxfs moved, adjust code. (#733759)
Diffstat (limited to 'systemd/fedora-readonly')
-rwxr-xr-xsystemd/fedora-readonly6
1 files changed, 3 insertions, 3 deletions
diff --git a/systemd/fedora-readonly b/systemd/fedora-readonly
index 70e57a62..4e8003a2 100755
--- a/systemd/fedora-readonly
+++ b/systemd/fedora-readonly
@@ -7,9 +7,9 @@
# Check SELinux status
SELINUX_STATE=
-if [ -e "/selinux/enforce" ] && [ "$(cat /proc/self/attr/current)" != "kernel" ]; then
- if [ -r "/selinux/enforce" ] ; then
- SELINUX_STATE=$(cat "/selinux/enforce")
+if [ -e "/sys/fs/selinux/enforce" ] && [ "$(cat /proc/self/attr/current)" != "kernel" ]; then
+ if [ -r "/sys/fs/selinux/enforce" ] ; then
+ SELINUX_STATE=$(cat "/sys/fs/selinux/enforce")
else
# assume enforcing if you can't read it
SELINUX_STATE=1