Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 May 2014 15:23:06 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r266029 - stable/10/share/skel
Message-ID:  <201405141523.s4EFN6lh091744@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Wed May 14 15:23:06 2014
New Revision: 266029
URL: http://svnweb.freebsd.org/changeset/base/266029

Log:
  MFC r264465:
  
    Prefer /etc/login.conf for some of these environment values.

Modified:
  stable/10/share/skel/dot.cshrc
  stable/10/share/skel/dot.profile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/share/skel/dot.cshrc
==============================================================================
--- stable/10/share/skel/dot.cshrc	Wed May 14 15:22:42 2014	(r266028)
+++ stable/10/share/skel/dot.cshrc	Wed May 14 15:23:06 2014	(r266029)
@@ -12,14 +12,15 @@ alias la	ls -aF
 alias lf	ls -FA
 alias ll	ls -lAF
 
+# These are normally set through /etc/login.conf.  You may override them here
+# if wanted.
+# set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin)
+# setenv	BLOCKSIZE	K
 # A righteous umask
-umask 22
-
-set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin)
+# umask 22
 
 setenv	EDITOR	vi
 setenv	PAGER	more
-setenv	BLOCKSIZE	K
 
 if ($?prompt) then
 	# An interactive shell -- set some stuff up

Modified: stable/10/share/skel/dot.profile
==============================================================================
--- stable/10/share/skel/dot.profile	Wed May 14 15:22:42 2014	(r266028)
+++ stable/10/share/skel/dot.profile	Wed May 14 15:23:06 2014	(r266029)
@@ -5,15 +5,16 @@
 # see also sh(1), environ(7).
 #
 
-# remove /usr/games if you want
-PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH
+# These are normally set through /etc/login.conf.  You may override them here
+# if wanted.
+# PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH
+# BLOCKSIZE=K;	export BLOCKSIZE
 
 # Setting TERM is normally done through /etc/ttys.  Do only override
 # if you're sure that you'll never log in via telnet or xterm or a
 # serial line.
 # TERM=xterm; 	export TERM
 
-BLOCKSIZE=K;	export BLOCKSIZE
 EDITOR=vi;   	export EDITOR
 PAGER=more;  	export PAGER
 



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