From d8eb9e45f2f541dc1214af9cd467312e5962555b Mon Sep 17 00:00:00 2001 From: kre Date: Thu, 21 Jul 2022 07:51:12 +0000 Subject: [PATCH] Get rid of the (insulting) We recommend that you create a non-root account... message from single user mode shell startups. --- etc/root/dot.profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/root/dot.profile b/etc/root/dot.profile index 716088724290..49a6433de408 100644 --- a/etc/root/dot.profile +++ b/etc/root/dot.profile @@ -1,4 +1,4 @@ -# $NetBSD: dot.profile,v 1.33 2022/07/09 09:43:51 kre Exp $ +# $NetBSD: dot.profile,v 1.34 2022/07/21 07:51:12 kre Exp $ case "${PATH}" in /rescue:*) ;; # leave it alone, user can change manually (if required) @@ -21,6 +21,6 @@ umask 022 export ENV=/root/.shrc # Do not display in 'su -' case -if [ -z "$SU_FROM" ]; then +if [ -z "$SU_FROM" ] && [ "$PPID" -ne 1 ]; then echo "We recommend that you create a non-root account and use su(1) for root access." fi