#!/bin/sh
#
#  SLEEP 50 seconds before executing the scripts.
#
#####

TERMINAL_TYPE="/usr/local/bin/terminaltype"

if [ -e ${TERMINAL_TYPE} ]; then

  term="`${TERMINAL_TYPE}`"

  if [ "x${term}" = "xlt" ]; then
    sleep 50

    # Wi-Fi start script : Wi-Fi AP Server & Wi-Fi Client
    #/usr/local/nerscripts/lte_start.sh > /tmp/ltestart.log &
    /usr/local/nerscripts/LteStart.py > /tmp/ltestart.log 2>&1 &

  fi

fi

exit 0

