This commit is contained in:
Ray Ozzie 2016-03-21 14:13:03 -07:00
parent aac571e4c7
commit 3638301f5c
2 changed files with 24 additions and 11 deletions

View File

@ -15,6 +15,8 @@ echo "The Things Network Gateway installer"
echo "" echo ""
# Retrieve gateway configuration for later # Retrieve gateway configuration for later
env
echo "Configuring gateway:" echo "Configuring gateway:"
if [[ $GATEWAY_NAME == "" ]]; then if [[ $GATEWAY_NAME == "" ]]; then

View File

@ -23,20 +23,31 @@ if [[ $GATEWAY_NAME == "" ]]; then
fi fi
echo GATEWAY_NAME: $GATEWAY_NAME echo GATEWAY_NAME: $GATEWAY_NAME
printf " Contact email: " if [[ $GATEWAY_EMAIL == "" ]]; then
read GATEWAY_EMAIL echo "ERROR: NO GATEWAY_EMAIL FOUND IN ENVIRONMENT"
exit 1
fi
echo GATEWAY_EMAIL: $GATEWAY_EMAIL
printf " Latitude [0]: " if [[ $GATEWAY_LAT == "" ]]; then
read GATEWAY_LAT echo "ERROR: NO GATEWAY_LAT (latitude) FOUND IN ENVIRONMENT"
if [[ $GATEWAY_LAT == "" ]]; then GATEWAY_LAT=0; fi exit 1
fi
echo GATEWAY_LAT: $GATEWAY_LAT
printf " Longitude [0]: " if [[ $GATEWAY_LON == "" ]]; then
read GATEWAY_LON echo "ERROR: NO GATEWAY_LON (longitude) FOUND IN ENVIRONMENT"
if [[ $GATEWAY_LON == "" ]]; then GATEWAY_LON=0; fi exit 1
fi
echo GATEWAY_LON: $GATEWAY_LON
printf " Altitude [0]: " if [[ $GATEWAY_ALT == "" ]]; then
read GATEWAY_ALT echo "ERROR: NO GATEWAY_ALT (altitude) FOUND IN ENVIRONMENT"
if [[ $GATEWAY_ALT == "" ]]; then GATEWAY_ALT=0; fi exit 1
fi
echo GATEWAY_ALT: $GATEWAY_ALT
echo ""
# Check dependencies # Check dependencies
echo "Installing dependencies..." echo "Installing dependencies..."