Date: Mon, 27 Oct 2008 01:05:10 +0000 (UTC) From: Andrew Thompson <thompsa@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r184317 - head/etc Message-ID: <200810270105.m9R15AvS013690@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: thompsa Date: Mon Oct 27 01:05:09 2008 New Revision: 184317 URL: http://svn.freebsd.org/changeset/base/184317 Log: Show which rc script is running since the default ^T just shows 'sh' as the process. Modified: head/etc/rc.subr Modified: head/etc/rc.subr ============================================================================== --- head/etc/rc.subr Mon Oct 27 00:26:07 2008 (r184316) +++ head/etc/rc.subr Mon Oct 27 01:05:09 2008 (r184317) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200810270105.m9R15AvS013690>