diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-01-31 06:03:28 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-01-31 06:03:28 (GMT) |
commit | 11efb889c6847da265daf34624b6b13667ad7f42 (patch) | |
tree | 765bc38aac5a9c4bd3492e653ee05ff640375432 /bin/snapshot | |
parent | c6da08f99452b1e945f8d0c6fb50b549104fdb4f (diff) | |
download | hdf5-11efb889c6847da265daf34624b6b13667ad7f42.zip hdf5-11efb889c6847da265daf34624b6b13667ad7f42.tar.gz hdf5-11efb889c6847da265daf34624b6b13667ad7f42.tar.bz2 |
[svn-r3336] Purpose:
Simple twist
Description:
snapshot used to just use whatever `hostname` returns. Often it
is the fully qualified name but sometimes just hostname without the
domain part. Inconsistent.
Solution:
Chopped off any domain part and use just the host name.
Use the 'cut' command rather than the sed with ncsa.uiuc.edu hardcoded.
Applied that to runtest too.
Platforms tested:
Should work. Will find out if the daily tests still work.
Diffstat (limited to 'bin/snapshot')
-rwxr-xr-x | bin/snapshot | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/snapshot b/bin/snapshot index c5ec605..7883e79 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -168,6 +168,7 @@ H5VERSION=hdf5 BASEDIR=${HOME}/snapshots-${H5VERSION} CURRENT=${BASEDIR}/current PREVIOUS=${BASEDIR}/previous +HOSTNAME=`hostname | cut -f1 -d.` # no domain part # Try finding a version of diff that supports the -I option too. DIFF=diff @@ -201,10 +202,10 @@ if [ "$cmd" = "all" -o -n "$cmdtest" ]; then #create TESTDIR if not exist yet case "$SRCDIRNAME" in "") - SRCDIRNAME=`hostname` + SRCDIRNAME=$HOSTNAME ;; -*) - SRCDIRNAME="`hostname`$SRCDIRNAME" + SRCDIRNAME="$HOSTNAME$SRCDIRNAME" ;; esac TESTDIR=${BASEDIR}/TestDir/${SRCDIRNAME} @@ -287,10 +288,10 @@ if [ -n "$cmdclean" ]; then else case "$SRCDIRNAME" in "") - SRCDIRNAME=`hostname` + SRCDIRNAME=$HOSTNAME ;; -*) - SRCDIRNAME="`hostname`$SRCDIRNAME" + SRCDIRNAME="$HOSTNAME$SRCDIRNAME" ;; esac TESTDIR=${BASEDIR}/TestDir/${SRCDIRNAME} |