kopia lustrzana https://github.com/jprochazka/adsb-receiver
57 wiersze
2.0 KiB
Bash
Executable File
57 wiersze
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
## PRE INSTALLATION OPERATIONS
|
|
|
|
source $RECEIVER_BASH_DIRECTORY/variables.sh
|
|
source $RECEIVER_BASH_DIRECTORY/functions.sh
|
|
|
|
clear
|
|
log_project_title
|
|
log_title_heading "Setting up tar1090"
|
|
log_title_message "------------------------------------------------------------------------------"
|
|
if ! whiptail --backtitle "${RECEIVER_PROJECT_TITLE}" \
|
|
--title "Beast-Splitter Setup" \
|
|
--yesno "Tar1090 provides an improved webinterface for use with ADS-B decoders readsb / dump1090-fa.\n\nRepository: https://github.com/wiedehopf/tar1090\n\nWould you like to begin the setup process now?" \
|
|
15 78; then
|
|
echo ""
|
|
echo -e "\e[91m \e[5mINSTALLATION HALTED!\e[25m"
|
|
echo -e " Setup has been halted at the request of the user."
|
|
echo -e ""
|
|
echo -e "\e[93m ------------------------------------------------------------------------------\e[96m"
|
|
echo -e "\e[92m Tar1090 setup halted.\e[39m"
|
|
echo -e ""
|
|
read -p "Press enter to continue..." discard
|
|
exit 1
|
|
fi
|
|
|
|
## DOWNLOAD THEN EXECUTE THE INSTALLATION SCRIPT
|
|
|
|
log_heading "Preparing to install tar1090"
|
|
|
|
if [[ ! -d $RECEIVER_BUILD_DIRECTORY/tar1090 ]]; then
|
|
log_message "Creating the tar1090 build directory"
|
|
cd $RECEIVER_BUILD_DIRECTORY/tar1090
|
|
fi
|
|
log_message "Entering the tar1090 build directory"
|
|
cd $RECEIVER_BUILD_DIRECTORY/tar1090
|
|
log_message "Downloading the tar1090 install script"
|
|
wget -v -O $RECEIVER_BUILD_DIRECTORY/tar1090/install.sh https://raw.githubusercontent.com/wiedehopf/tar1090/master/install.sh 2>&1 | tee -a $RECEIVER_LOG_FILE
|
|
log_message "Executing the tar1090 install script"
|
|
echo ""
|
|
sudo bash $RECEIVER_BUILD_DIRECTORY/tar1090/install.sh
|
|
echo ""
|
|
|
|
|
|
## SETUP COMPLETE
|
|
|
|
log_message "Returning to ${RECEIVER_PROJECT_TITLE} root directory"
|
|
cd $RECEIVER_ROOT_DIRECTORY
|
|
|
|
echo ""
|
|
log_title_message "------------------------------------------------------------------------------"
|
|
log_title_heading "Tar1090 setup is complete"
|
|
echo ""
|
|
read -p "Press enter to continue..." discard
|
|
|
|
exit 0
|