Use environment variable PLATFORM when defined.

This commit is contained in:
Christoph Niethammer 2011-08-03 12:26:08 +00:00
parent 27a1d5cb9c
commit 3a2c12e37c

8
sit
View file

@ -17,20 +17,18 @@ if [[ -e $SIT_CONFIG_FILE ]] ; then
fi
source "$SIT_PATH/functions.sh"
# check platform
# TODO: add ip addresses for identification?
if [ -z $PLATFORM ]; then
# identify platform manually if no environment variable was set
case $HOSTNAME in
cl3fr1|cl3fr2|imager)
PLATFORM="laki"
;;
xe601)
PLATFORM="hermit"
;;
*)
sit_info "Unknown host '$HOSTNAME' using default platform '${DEFAULT_PLATFORM}' configuration"
PLATFORM="${DEFAULT_PLATFORM}"
;;
esac
fi
sit_info "Platform: $PLATFORM"