diff --git a/sit b/sit index 665302f..42463ac 100755 --- a/sit +++ b/sit @@ -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"