Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Nov 2012 16:46:10 +0100
From:      Ulrich =?utf-8?B?U3DDtnJsZWlu?= <uqs@FreeBSD.org>
To:        Eitan Adler <eadler@FreeBSD.org>
Cc:        svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org
Subject:   Re: svn commit: r243130 - head/etc/root
Message-ID:  <20121118154610.GC28199@acme.spoerlein.net>
In-Reply-To: <201211160425.qAG4PZ8I016575@svn.freebsd.org>
References:  <201211160425.qAG4PZ8I016575@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 2012-11-16 at 04:25:35 +0000, Eitan Adler wrote:
> Author: eadler
> Date: Fri Nov 16 04:25:35 2012
> New Revision: 243130
> URL: http://svnweb.freebsd.org/changeset/base/243130
> 
> Log:
>   dot.login is supposed to be for bourne shell, not csh
>   
>   Pointyhat to: me
>   Approved by: cperciva (implicit)
> 
> Modified:
>   head/etc/root/dot.login
> 
> Modified: head/etc/root/dot.login
> ==============================================================================
> --- head/etc/root/dot.login	Fri Nov 16 03:33:34 2012	(r243129)
> +++ head/etc/root/dot.login	Fri Nov 16 04:25:35 2012	(r243130)
> @@ -6,4 +6,4 @@
>  #
>  
>  # Uncomment to display a random cookie each login:
> -# if ( -x /usr/games/fortune ) /usr/games/fortune -s
> +# [ -x /usr/games/fortune ] && /usr/games/fortune -s

Please add || true to that line, so that when it is enabled and
/usr/games/fortune doesn't exist or is not executable, the shell startup
doesn't return with $? set to something non-zero.

This is especially annoying if you have $? somewhere in your prompt.

Thanks
Uli



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20121118154610.GC28199>