svn commit: r242537 - stable/8/etc/root

Eitan Adler eadler at FreeBSD.org
Sun Nov 4 00:30:43 UTC 2012


Author: eadler
Date: Sun Nov  4 00:30:42 2012
New Revision: 242537
URL: http://svn.freebsd.org/changeset/base/242537

Log:
  MFC r242452:
  	The test fails with "exit 1" if /usr/games/fortune doesn't actually
  	exist.  Fix that.
  
  PR:		conf/71994
  Approved by:	cperciva (implicit)

Modified:
  stable/8/etc/root/dot.login
Directory Properties:
  stable/8/etc/   (props changed)

Modified: stable/8/etc/root/dot.login
==============================================================================
--- stable/8/etc/root/dot.login	Sat Nov  3 23:32:32 2012	(r242536)
+++ stable/8/etc/root/dot.login	Sun Nov  4 00:30:42 2012	(r242537)
@@ -6,4 +6,4 @@
 #
 
 # Uncomment to display a random cookie each login:
-# [ -x /usr/games/fortune ] && /usr/games/fortune -s
+# if ( -x /usr/games/fortune ) /usr/games/fortune -s


More information about the svn-src-stable-8 mailing list