1 #! /usr/bin/sh 2 # 3 # CDDL HEADER START 4 # 5 # The contents of this file are subject to the terms of the 6 # Common Development and Distribution License (the License). 7 # You may not use this file except in compliance with the License. 8 # 9 # You can obtain a copy of the license at src/CDDL.txt 10 # or http://www.opensolaris.org/os/licensing. 11 # See the License for the specific language governing permissions 12 # and limitations under the License. 13 # 14 # When distributing Covered Code, include this CDDL HEADER in each 15 # file and include the License file at src/CDDL.txt. 16 # If applicable, add the following below this CDDL HEADER, with the 17 # fields enclosed by brackets [] replaced with your own identifying 18 # information: Portions Copyright [yyyy] [name of copyright owner] 19 # 20 # CDDL HEADER END 21 # 22 23 # 24 # Copyright 2008 Sun Microsystems, Inc. All rights reserved. 25 # Use is subject to license terms. 26 # 27 # ident "@(#)profile.sh 1.6 08/05/29 SMI" 28 # 29 30 ulimit -n 1024 31 32 TET_ROOT=`pkgparam SUNWscts BASEDIR`; export TET_ROOT 33 34 PATH=$TET_ROOT/bin:/usr/ccs/bin:.:/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:$TET_ROOT/svc/bin:$TET_ROOT/tset/bin:$TET_ROOT/tset/dataservice/bin:$TET_ROOT/tset/geo/bin:$TET_ROOT/tset/sanity/bin:/usr/cluster/bin 35 export PATH 36 37 LD_LIBRARY_PATH=$TET_ROOT/tset/lib:$TET_ROOT/tset/dataservice/lib:$TET_ROOT/tset/geo/lib:$TET_ROOT/tset/sanity/lib; export LD_LIBRARY_PATH 38 39 TET_TSROOT=$TET_ROOT/tset; export TET_TSROOT 40 41 PS1="\"`uname -n`:\${PWD}> \"" ; export PS1 42 43 EDITOR=vi ; export EDITOR 44