From 998abefe00dbb10b6b7b404bfcd043c336dd6001 Mon Sep 17 00:00:00 2001 From: rpe <> Date: Fri, 27 Dec 2013 23:43:39 +0000 Subject: [PATCH] - add chmod of seedfile in /etc - use its return code for single/multiuser detection ok deraadt --- src/etc/rc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index 6f801a10..c55cf22e 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.416 2013/12/27 23:40:29 rpe Exp $ +# $OpenBSD: rc,v 1.417 2013/12/27 23:43:39 rpe Exp $ # System startup script run by init on autoboot # or after single-user. @@ -232,8 +232,9 @@ fi if [ X"$1" = X"shutdown" ]; then random_seed - _c=$? - if [ ${_c} -eq 0 ]; then + chmod 600 /etc/random.seed >/dev/null 2>&1 + _notsingle=$? # root is writeable, so we are not single user?? + if [ ${_notsingle} -eq 0 ]; then if [ -n "${pkg_scripts}" ]; then echo -n 'stopping package daemons:' while [ -n "${pkg_scripts}" ]; do