svn commit: r242452 - head/etc/root

Eitan Adler eadler at FreeBSD.org
Thu Nov 1 19:38:04 UTC 2012


Author: eadler
Date: Thu Nov  1 19:38:03 2012
New Revision: 242452
URL: http://svn.freebsd.org/changeset/base/242452

Log:
  The test fails with "exit 1" if /usr/games/fortune doesn't actually
  exist.  Fix that.
  
  PR:		conf/71994
  Submitted by:	Mikael Eklund <rma at ludd.ltu.se>
  Reviewed by:	crees
  Reviewed by:	jilles
  Approved by:	cperciva (implicit)
  MFC after:	3 days

Modified:
  head/etc/root/dot.login

Modified: head/etc/root/dot.login
==============================================================================
--- head/etc/root/dot.login	Thu Nov  1 18:59:19 2012	(r242451)
+++ head/etc/root/dot.login	Thu Nov  1 19:38:03 2012	(r242452)
@@ -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-all mailing list