This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via 9ac43fb9e197e47df7ff9b14d9ba80eca592d9f2 (commit) via 8b64b1b64eaeb7efd0ae7ffe5d2b9076164c2a84 (commit) via fd75e5e75cef7fdc2a94c1c0f6b1aba4e6958589 (commit) from 07e9a1357dadb1a2b40d0d85aa956331eaa6b537 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 9ac43fb9e197e47df7ff9b14d9ba80eca592d9f2 Merge: 8b64b1b 07e9a13 Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Jan 12 23:02:28 2014 +0100
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next
commit 8b64b1b64eaeb7efd0ae7ffe5d2b9076164c2a84 Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Jan 12 23:02:00 2014 +0100
Limit /run to 8M.
commit fd75e5e75cef7fdc2a94c1c0f6b1aba4e6958589 Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Jan 12 23:01:21 2014 +0100
initscripts: Fix syntax error when mounting /run.
-----------------------------------------------------------------------
Summary of changes: src/initscripts/init.d/mountkernfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Difference in files: diff --git a/src/initscripts/init.d/mountkernfs b/src/initscripts/init.d/mountkernfs index 6ea2d18..f7be82d 100644 --- a/src/initscripts/init.d/mountkernfs +++ b/src/initscripts/init.d/mountkernfs @@ -31,7 +31,7 @@ case "${1}" in
if ! mountpoint /run &> /dev/null; then boot_mesg -n " /run" ${NORMAL} - mount -n -t tmpfs,nosuid,nodev,mode=755 /run /run || failed=1 + mount -n -t tmpfs -o nosuid,nodev,mode=755,size=8M /run /run || failed=1 fi
boot_mesg "" ${NORMAL}
hooks/post-receive -- IPFire 2.x development tree