From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7EAF7138247 for ; Sat, 18 Jan 2014 08:50:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9239DE0B7C; Sat, 18 Jan 2014 08:50:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2302BE0B7C for ; Sat, 18 Jan 2014 08:50:54 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49D7A33FAAC for ; Sat, 18 Jan 2014 08:50:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 0675718096 for ; Sat, 18 Jan 2014 08:50:52 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1390034079.cdc0dd061bed38be298e714e45cd0faa7cf77bf6.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: sh/ X-VCS-Repository: proj/openrc X-VCS-Files: sh/init.sh.Linux.in X-VCS-Directories: sh/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: cdc0dd061bed38be298e714e45cd0faa7cf77bf6 X-VCS-Branch: master Date: Sat, 18 Jan 2014 08:50:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d1c80ca9-4b6c-42f4-9057-a6b883be179b X-Archives-Hash: 88b819fdc77153064827fc780dd8a15a commit: cdc0dd061bed38be298e714e45cd0faa7cf77bf6 Author: William Hubbs gmail com> AuthorDate: Sat Jan 18 08:34:39 2014 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Jan 18 08:34:39 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=cdc0dd06 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 9054978..a8ee69e 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