From 90f75c52e55481f21b553e31b7706860ef0e338f Mon Sep 17 00:00:00 2001 From: robert <> Date: Mon, 13 Dec 2010 15:27:27 +0000 Subject: [PATCH] simulate a full login with su, now that the environment is fine after the last su(1) commit --- src/etc/rc.d/rc.subr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc.d/rc.subr b/src/etc/rc.d/rc.subr index 70560839..46593dd5 100644 --- a/src/etc/rc.d/rc.subr +++ b/src/etc/rc.d/rc.subr @@ -1,4 +1,4 @@ -# $OpenBSD: rc.subr,v 1.12 2010/12/11 12:57:21 ajacoutot Exp $ +# $OpenBSD: rc.subr,v 1.13 2010/12/13 15:27:27 robert Exp $ [ -z "${local_rcconf}" ] && . /etc/rc.conf @@ -9,7 +9,7 @@ rc_err() { rc_start() { type rc_pre >/dev/null && rc_pre - su -c ${daemon_class:-daemon} -s ${daemon_shell:-/bin/sh} \ + su - -c ${daemon_class:-daemon} -s ${daemon_shell:-/bin/sh} \ ${daemon_user:-root} -c "${daemon} ${daemon_flags}" >/dev/null }