From 02c7950097f6329ec0b2e4db41bc22260bbbbc20 Mon Sep 17 00:00:00 2001 From: Andrew Thompson Date: Mon, 27 Oct 2008 01:05:09 +0000 Subject: [PATCH] Show which rc script is running since the default ^T just shows 'sh' as the process. --- etc/rc.subr | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/rc.subr b/etc/rc.subr index 724bc6a38839..19f9eda3dc80 100644 --- a/etc/rc.subr +++ b/etc/rc.subr @@ -913,6 +913,7 @@ run_rc_script() else ( trap "echo Script $_file interrupted; kill -QUIT $$" 3 trap "echo Script $_file interrupted; exit 1" 2 + trap "echo Script $_file running" 29 set $_arg; . $_file ) fi fi