From owner-svn-src-head@freebsd.org Mon Jan 4 14:47:43 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1FF8A600A1 for ; Mon, 4 Jan 2016 14:47:43 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: from vfemail.net (onethreetwo.vfemail.net [199.16.11.132]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 725D11E56 for ; Mon, 4 Jan 2016 14:47:43 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: (qmail 67977 invoked by uid 89); 4 Jan 2016 14:46:11 -0000 Received: from localhost (HELO freequeue.vfemail.net) (127.0.0.1) by localhost with (DHE-RSA-AES256-SHA encrypted) SMTP; 4 Jan 2016 14:46:09 -0000 Received: (qmail 75282 invoked by uid 89); 4 Jan 2016 08:44:58 -0000 Received: by simscan 1.3.1 ppid: 75274, pid: 75278, t: 0.0042s scanners:none Received: from unknown (HELO smtp102-2.vfemail.net) (172.16.100.62) by FreeQueue with SMTP; 4 Jan 2016 08:44:57 -0000 Received: (qmail 28155 invoked by uid 89); 4 Jan 2016 08:44:57 -0000 Received: by simscan 1.4.0 ppid: 28140, pid: 28152, t: 0.4530s scanners:none Received: from unknown (HELO nil) (amJlaWNoQHZmZW1haWwubmV0@172.16.100.27) by mail.vfemail.net with ESMTPA; 4 Jan 2016 08:44:57 -0000 From: Jan Beich To: Warner Losh Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r293115 - head/etc References: <201601031918.u03JImBs012182@repo.freebsd.org> Date: Mon, 04 Jan 2016 09:44:28 +0100 In-Reply-To: <201601031918.u03JImBs012182@repo.freebsd.org> (Warner Losh's message of "Sun, 3 Jan 2016 19:18:48 +0000 (UTC)") Message-ID: <7fjp-lonn-wny@vfemail.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 14:47:43 -0000 --=-=-= Content-Type: text/plain Warner Losh writes: > Author: imp > Date: Sun Jan 3 19:18:48 2016 > New Revision: 293115 > URL: https://svnweb.freebsd.org/changeset/base/293115 > > Log: > Use /bin/rm to remove /firstboot*. Otherwise rm -i alias is picked > up and can cause issues on boot with the prompts. Why do you have ~/.profile stuff leaking into rc* boot sequence? And maybe use |command| instead. $ alias rm=foo /bin/rm=foo $ rm sh: foo: not found $ /bin/rm sh: foo: not found $ command rm usage: rm [-f | -i] [-dIPRrvWx] file ... unlink file ~/.profile may also contain syntax allowed by bash e.g., $ rm() { bar; }; /bin/rm() { bar; } $ rm bash: bar: command not found $ /bin/rm bash: bar: command not found $ command rm rm: missing operand Try 'rm --help' for more information. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQF8BAEBCgBmBQJWijDtXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQjQ0MzY3NEM3RDIzNTc4NkUxNDkyQ0VF NEM3Nzg4MzQ3OURCRERCAAoJEOTHeINHnb3bB20IAJgh8Lp7nqvutDUmojFxjY9+ 6VQQAUbsWTGllsT0yMAst6Q3xZEVq9t5nSmSsdlrcYNRPb9jdASprK3Iwtx623O4 d2MBFKPQD+El0Rb1KTPXKpkJeI/fh4U+/bgtvsBzqs3qyccX2MaqfYZhkKwijgul gMGORHtjrfj0hhsVI0AyXYwBKjOMwOZ+LeeRrjiXyWNhDZXrBNTJ2gISScoww3TH NHoktzBfGPJWz25OJeqbMylECq3rdNjGiKXAS3f2pzRukVaTCO1/qnRssm/AsBed ulDKdMJqiFYRRwPazhcjsMXDSFhdP2FXBbNC/APTG2d0SMA0xgiesp01XO91E+w= =vGlv -----END PGP SIGNATURE----- --=-=-=--