From cdc0dd061bed38be298e714e45cd0faa7cf77bf6 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sat, 18 Jan 2014 02:34:39 -0600 Subject: [PATCH] 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/ --- sh/init.sh.Linux.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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