1 # 2 # CDDL HEADER START 3 # 4 # The contents of this file are subject to the terms of the 5 # Common Development and Distribution License (the "License"). 6 # You may not use this file except in compliance with the License. 7 # 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 # or http://www.opensolaris.org/os/licensing. 10 # See the License for the specific language governing permissions 11 # and limitations under the License. 12 # 13 # When distributing Covered Code, include this CDDL HEADER in each 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 # If applicable, add the following below this CDDL HEADER, with the 16 # fields enclosed by brackets "[]" replaced with your own identifying 17 # information: Portions Copyright [yyyy] [name of copyright owner] 18 # 19 # CDDL HEADER END 20 # 21 22 # 23 # Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24 # Use is subject to license terms. 25 # 26 # ident "@(#)config.vars 1.1 08/10/24 SMI" 27 # 28 29 # 30 # Global variables 31 # 32 33 # Test client hostname 34 export CLIENT=${CIENT:-"`uname -n`"} 35 36 # Test server hostname 37 export SERVER=${SERVER:-""} 38 39 # NFSv4 mapid domain 40 export NFSMAPID_DOMAIN=${NFSMAPID_DOMAIN:-"sun.com"} 41 42 # tmp directory 43 export TMPDIR=${TMPDIR:-/var/tmp} 44 45 # since this is stress tests, TIMEOUT will be much longer 46 export STF_TIMEOUT=${STF_TIMEOUT:-21000} 47 48 # Debug variable to turn on/off debugging; default is off 49 export DEBUG=${DEBUG:-0} 50 51 52 # variables saved by STF 53 STF_VARIABLES="CLIENT SERVER NFSMAPID_DOMAIN \ 54 TMPDIR STF_TIMEOUT DEBUG" 55