Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Jan 2019 11:04:27 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r342881 - head/share/skel
Message-ID:  <201901091104.x09B4SVZ065656@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: trasz
Date: Wed Jan  9 11:04:27 2019
New Revision: 342881
URL: https://svnweb.freebsd.org/changeset/base/342881

Log:
  Make sh(1) recognize the default $HOME.  By default /home
  is a symlink; without this change, when you log in, sh(1)
  won't realize the current directory (eg '/usr/home/test')
  is the same as $HOME ('/home/test').
  
  Reviewed by:	jilles
  MFC after:	2 weeks
  Sponsored by:	DARPA, AFRL
  Differential Revision:	https://reviews.freebsd.org/D18775

Modified:
  head/share/skel/dot.profile

Modified: head/share/skel/dot.profile
==============================================================================
--- head/share/skel/dot.profile	Wed Jan  9 09:36:54 2019	(r342880)
+++ head/share/skel/dot.profile	Wed Jan  9 11:04:27 2019	(r342881)
@@ -21,6 +21,9 @@ PAGER=less;  	export PAGER
 # set ENV to a file invoked each time sh is started for interactive use.
 ENV=$HOME/.shrc; export ENV
 
+# Let sh(1) know it's at home, despite /home being a symlink.
+if [ "$PWD" != "$HOME" ] && [ "$PWD" -ef "$HOME" ] ; then cd ; fi
+
 # Query terminal size; useful for serial lines.
 if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi
 



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