From owner-svn-src-stable@freebsd.org Tue Nov 14 17:05:36 2017 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74046DD7994; Tue, 14 Nov 2017 17:05:36 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 4B5E7662F9; Tue, 14 Nov 2017 17:05:36 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAEH5ZAI048104; Tue, 14 Nov 2017 17:05:35 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAEH5ZEj048100; Tue, 14 Nov 2017 17:05:35 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <201711141705.vAEH5ZEj048100@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Tue, 14 Nov 2017 17:05:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r325815 - in stable/11: etc/root share/skel X-SVN-Group: stable-11 X-SVN-Commit-Author: trasz X-SVN-Commit-Paths: in stable/11: etc/root share/skel X-SVN-Commit-Revision: 325815 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Nov 2017 17:05:36 -0000 Author: trasz Date: Tue Nov 14 17:05:34 2017 New Revision: 325815 URL: https://svnweb.freebsd.org/changeset/base/325815 Log: MFC r320672: Cosmetic tweaks to the default shell rc files, mostly comments. MFC r320678: Fix typo introduced in r320672 - check for existence of the right file. Modified: stable/11/etc/root/dot.login stable/11/etc/root/dot.profile stable/11/share/skel/dot.login stable/11/share/skel/dot.profile Directory Properties: stable/11/ (props changed) Modified: stable/11/etc/root/dot.login ============================================================================== --- stable/11/etc/root/dot.login Tue Nov 14 17:03:56 2017 (r325814) +++ stable/11/etc/root/dot.login Tue Nov 14 17:05:34 2017 (r325815) @@ -2,11 +2,11 @@ # # .login - csh login script, read by login shell, after `.cshrc' at login. # -# see also csh(1), environ(7). +# See also csh(1), environ(7). # # Query terminal size; useful for serial lines. if ( -x /usr/bin/resizewin ) /usr/bin/resizewin -z -# Uncomment to display a random cookie each login: +# Uncomment to display a random cookie on each login. # if ( -x /usr/bin/fortune ) /usr/bin/fortune -s Modified: stable/11/etc/root/dot.profile ============================================================================== --- stable/11/etc/root/dot.profile Tue Nov 14 17:03:56 2017 (r325814) +++ stable/11/etc/root/dot.profile Tue Nov 14 17:05:34 2017 (r325815) @@ -9,4 +9,8 @@ export TERM PAGER=more export PAGER +# Query terminal size; useful for serial lines. if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi + +# Uncomment to display a random cookie on each login. +# if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune -s ; fi Modified: stable/11/share/skel/dot.login ============================================================================== --- stable/11/share/skel/dot.login Tue Nov 14 17:03:56 2017 (r325814) +++ stable/11/share/skel/dot.login Tue Nov 14 17:05:34 2017 (r325815) @@ -2,8 +2,11 @@ # # .login - csh login script, read by login shell, after `.cshrc' at login. # -# see also csh(1), environ(7). +# See also csh(1), environ(7). # +# Query terminal size; useful for serial lines. if ( -x /usr/bin/resizewin ) /usr/bin/resizewin -z + +# Display a random cookie on each login. if ( -x /usr/bin/fortune ) /usr/bin/fortune freebsd-tips Modified: stable/11/share/skel/dot.profile ============================================================================== --- stable/11/share/skel/dot.profile Tue Nov 14 17:03:56 2017 (r325814) +++ stable/11/share/skel/dot.profile Tue Nov 14 17:05:34 2017 (r325815) @@ -24,4 +24,5 @@ ENV=$HOME/.shrc; export ENV # Query terminal size; useful for serial lines. if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi +# Display a random cookie on each login. if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune freebsd-tips ; fi