From owner-svn-src-all@FreeBSD.ORG Mon Apr 14 18:07:01 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21BD5A81; Mon, 14 Apr 2014 18:07:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E906417B7; Mon, 14 Apr 2014 18:07:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3EI70sA062829; Mon, 14 Apr 2014 18:07:00 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3EI70lg062823; Mon, 14 Apr 2014 18:07:00 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201404141807.s3EI70lg062823@svn.freebsd.org> From: Bryan Drewery Date: Mon, 14 Apr 2014 18:07:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264465 - head/share/skel X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Apr 2014 18:07:01 -0000 Author: bdrewery Date: Mon Apr 14 18:07:00 2014 New Revision: 264465 URL: http://svnweb.freebsd.org/changeset/base/264465 Log: Prefer /etc/login.conf for some of these environment values. PR: conf/186085 Reported by: Glen Neff MFC after: 2 weeks Sponsored by: EMC Modified: head/share/skel/dot.cshrc head/share/skel/dot.profile Modified: head/share/skel/dot.cshrc ============================================================================== --- head/share/skel/dot.cshrc Mon Apr 14 17:54:01 2014 (r264464) +++ head/share/skel/dot.cshrc Mon Apr 14 18:07:00 2014 (r264465) @@ -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: head/share/skel/dot.profile ============================================================================== --- head/share/skel/dot.profile Mon Apr 14 17:54:01 2014 (r264464) +++ head/share/skel/dot.profile Mon Apr 14 18:07:00 2014 (r264465) @@ -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