# # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright 2010 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # Copyright 2015 Nexenta Systems, Inc. All rights reserved. # The profile that all logins get before using their own .profile. trap "" 2 3 export LOGNAME PATH if test $TERM = "" { if test $(uname -p) = "i386" { setvar TERM = 'sun-color' } else { setvar TERM = 'sun' } export TERM } # # use less(1) as the default pager for the man(1) command. # setvar PAGER = ""/usr/bin/less -ins"" export PAGER # Login and -su shells get /etc/profile services. # -rsh is given its environment in its .profile. match $0 { with -bash # set prompt for bash setvar PS1 = ""\u@\h:\w\\$ "" export PS1 } match $0 { with -sh | -ksh | -ksh93 | -jsh | -bash | -zsh if test ! -f .hushlogin { /usr/sbin/quota # Allow the user to break the Message-Of-The-Day only. trap "trap '' 2" 2 /bin/cat -s /etc/motd trap "" 2 /bin/mail -E match $Status { with 0 echo "You have new mail." with 2 echo "You have mail." } } } umask 022 trap 2 3