From owner-svn-src-head@FreeBSD.ORG Mon Oct 27 01:05:10 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 791FF1065675; Mon, 27 Oct 2008 01:05:10 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 677B68FC0A; Mon, 27 Oct 2008 01:05:10 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id m9R15AQB013691; Mon, 27 Oct 2008 01:05:10 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id m9R15AvS013690; Mon, 27 Oct 2008 01:05:10 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200810270105.m9R15AvS013690@svn.freebsd.org> From: Andrew Thompson Date: Mon, 27 Oct 2008 01:05:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r184317 - head/etc X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Oct 2008 01:05:10 -0000 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