From 93980c1b5a34b2e040b61798393347dd1e7d340e Mon Sep 17 00:00:00 2001 From: ajacoutot <> Date: Mon, 28 Aug 2017 06:56:54 +0000 Subject: [PATCH] Display that we are running the upgrade scripts when they exist. On slowish machines, running sysmerge(8) can take a little while so don't let people wonder about why the output seems stuck. ok sthen@ tb@ rpe@ --- src/etc/rc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/etc/rc b/src/etc/rc index 8700520e..68182c71 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.515 2017/08/21 21:24:11 rpe Exp $ +# $OpenBSD: rc,v 1.516 2017/08/28 06:56:54 ajacoutot Exp $ # System startup script run by init on autoboot or after single-user. # Output and error are redirected to console by init, and the console is the @@ -224,6 +224,7 @@ run_upgrade_script() { [[ -n $_suffix ]] || return 1 if [[ -f /etc/rc.$_suffix ]]; then + echo "running rc.$_suffix" mv /etc/rc.$_suffix /etc/rc.$_suffix.run . /etc/rc.$_suffix.run 2>&1 | tee /dev/tty | mail -Es "$(hostname) rc.$_suffix output" root >/dev/null