aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2014-01-18 02:34:39 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2014-01-18 02:34:39 -0600
commitcdc0dd061bed38be298e714e45cd0faa7cf77bf6 (patch)
tree24860023bb1c871e035fd22e76ca0280b6c0d3ff
parent561b53ef09eed4dfba0b7f3026ddcdc2b7b5c54a (diff)
init-Linux.sh: do not mount /run with nosuid
This is so that we will be consistent with the systemd spec forr the /run directory mentioned in this wiki article: http://www.freedesktop.org/wiki/Software/systemd/InitrdInterface/
-rw-r--r--sh/init.sh.Linux.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/init.sh.Linux.in b/sh/init.sh.Linux.in
index 9054978a..a8ee69ea 100644
--- a/sh/init.sh.Linux.in
+++ b/sh/init.sh.Linux.in
@@ -57,7 +57,7 @@ elif ! mountinfo -q /run; then
ebegin "Mounting /run"
rc=0
if ! fstabinfo --mount /run; then
- mount -t tmpfs -o mode=0755,nosuid,nodev,size=10% tmpfs /run
+ mount -t tmpfs -o mode=0755,nodev,size=10% tmpfs /run
rc=$?
fi
if [ $rc != 0 ]; then