2019-10-07 00:59:21 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# RaspAP Quick Installer
|
2020-03-23 10:31:18 +01:00
|
|
|
# Author: @billz <billzimmerman@gmail.com>
|
|
|
|
# License: GNU General Public License v3.0
|
2019-10-07 00:59:21 +02:00
|
|
|
#
|
2020-12-15 16:04:55 +01:00
|
|
|
# Installs an instance of RaspAP.
|
2019-12-09 13:07:57 +01:00
|
|
|
#
|
2020-12-15 16:04:55 +01:00
|
|
|
# Available options:
|
2019-11-07 14:29:42 +01:00
|
|
|
# -y, --yes, --assume-yes
|
2019-12-01 10:45:06 +01:00
|
|
|
# Assume "yes" as answer to all prompts and run non-interactively
|
2020-12-15 16:04:55 +01:00
|
|
|
# -c, --cert, --certficate
|
2019-12-01 10:45:06 +01:00
|
|
|
# Installs mkcert and generates an SSL certificate for lighttpd
|
2019-11-22 15:03:50 +01:00
|
|
|
# -o, --openvpn <flag>
|
2019-12-01 10:45:06 +01:00
|
|
|
# Used with -y, --yes, sets OpenVPN install option (0=no install)
|
2020-04-13 09:49:18 +02:00
|
|
|
# -a, --adblock <flag>
|
|
|
|
# Used with -y, --yes, sets Adblock install option (0=no install)
|
2019-12-01 10:45:06 +01:00
|
|
|
# -r, --repo, --repository <name>
|
|
|
|
# Overrides the default GitHub repo (billz/raspap-webgui)
|
2019-11-22 15:03:50 +01:00
|
|
|
# -b, --branch <name>
|
2019-12-01 10:45:06 +01:00
|
|
|
# Overrides the default git branch (master)
|
|
|
|
# -h, --help
|
|
|
|
# Outputs usage notes and exits
|
2020-06-25 00:36:19 +02:00
|
|
|
# -u, --upgrade
|
|
|
|
# Upgrades an existing installation to the latest release version
|
2019-12-01 10:45:06 +01:00
|
|
|
# -v, --version
|
|
|
|
# Outputs release info and exits
|
2020-01-15 18:47:09 +01:00
|
|
|
#
|
|
|
|
# Depending on options passed to the installer, ONE of the following
|
|
|
|
# additional shell scripts will be downloaded and sourced:
|
|
|
|
#
|
2020-03-05 22:47:46 +01:00
|
|
|
# https://raw.githubusercontent.com/billz/raspap-webgui/master/installers/common.sh
|
2020-01-15 18:47:09 +01:00
|
|
|
# - or -
|
2020-03-05 22:47:46 +01:00
|
|
|
# https://raw.githubusercontent.com/billz/raspap-webgui/master/installers/mkcert.sh
|
2020-03-23 10:31:18 +01:00
|
|
|
#
|
|
|
|
# You are not obligated to bundle the LICENSE file with your RaspAP projects as long
|
|
|
|
# as you leave these references intact in the header comments of your source files.
|
2019-10-07 00:59:21 +02:00
|
|
|
|
2020-04-10 11:40:21 +02:00
|
|
|
# Fetch latest release from GitHub API
|
2020-12-15 16:04:55 +01:00
|
|
|
repo="billz/raspap-webgui" #override with -r, --repo option
|
2020-03-23 10:31:18 +01:00
|
|
|
readonly RASPAP_LATEST=$(curl -s "https://api.github.com/repos/$repo/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' )
|
2020-12-15 16:04:55 +01:00
|
|
|
branch="$RASPAP_LATEST" #override with -b, --branch option
|
|
|
|
|
|
|
|
function _setup_colors() {
|
|
|
|
ANSI_RED="\033[0;31m"
|
|
|
|
ANSI_GREEN="\033[0;32m"
|
|
|
|
ANSI_YELLOW="\033[0;33m"
|
|
|
|
ANSI_RASPBERRY="\033[0;35m"
|
|
|
|
ANSI_ERROR="\033[1;37;41m"
|
|
|
|
ANSI_RESET="\033[m"
|
|
|
|
}
|
|
|
|
|
|
|
|
function _log_output() {
|
|
|
|
readonly LOGFILE_PATH="/tmp"
|
|
|
|
exec > >(tee -i $LOGFILE_PATH/raspap_install.log)
|
|
|
|
exec 2>&1
|
|
|
|
}
|
|
|
|
|
|
|
|
function _usage() {
|
|
|
|
cat << EOF
|
|
|
|
Usage: $(basename "$0") [OPTION]
|
|
|
|
|
|
|
|
Installs an instance of RaspAP.
|
|
|
|
|
|
|
|
Available options:
|
|
|
|
-y, --yes, --assume-yes
|
|
|
|
Assumes "yes" as an answer to all prompts
|
|
|
|
-c, --cert, --certificate
|
|
|
|
Installs an SSL certificate for lighttpd
|
|
|
|
-o, --openvpn <flag>
|
|
|
|
Used with -y, --yes, sets OpenVPN install option (0=no install)
|
|
|
|
-a, --adblock <flag>
|
|
|
|
Used with -y, --yes, sets Adblock install option (0=no install)
|
|
|
|
-r, --repo, --repository <name>
|
|
|
|
Overrides the default GitHub repo (billz/raspap-webgui)
|
|
|
|
-b, --branch <name>
|
|
|
|
Overrides the default git branch (latest release)
|
|
|
|
-h, --help
|
|
|
|
Outputs usage notes and exits
|
|
|
|
-u, --upgrade
|
|
|
|
Upgrades an existing installation to the latest release version
|
|
|
|
-v, --version
|
|
|
|
Outputs release info and exits
|
|
|
|
|
2019-11-11 20:18:20 +01:00
|
|
|
EOF
|
2020-12-15 16:04:55 +01:00
|
|
|
exit
|
|
|
|
}
|
2019-11-07 09:44:13 +01:00
|
|
|
|
2020-12-15 16:04:55 +01:00
|
|
|
function _parse_params() {
|
|
|
|
# default flag values
|
|
|
|
assume_yes=0
|
|
|
|
upgrade=0
|
|
|
|
ovpn_option=1
|
|
|
|
adblock_option=1
|
|
|
|
|
|
|
|
while :; do
|
|
|
|
case ${1} in
|
|
|
|
-y|--yes|--assume-yes)
|
|
|
|
assume_yes=1
|
|
|
|
apt_option="-y"
|
|
|
|
;;
|
|
|
|
-o|--openvpn)
|
|
|
|
ovpn_option="$2"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-a|--adblock)
|
|
|
|
adblock_option="$2"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-c|--cert|--certificate)
|
|
|
|
install_cert=1
|
|
|
|
;;
|
|
|
|
-r|--repo|--repository)
|
|
|
|
repo="$2"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-b|--branch)
|
|
|
|
branch="$2"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-h|--help)
|
|
|
|
_usage
|
|
|
|
;;
|
|
|
|
-u|--upgrade)
|
|
|
|
upgrade=1
|
|
|
|
;;
|
|
|
|
-v|--version)
|
|
|
|
_version
|
|
|
|
;;
|
|
|
|
-*|--*)
|
|
|
|
echo "Unknown option: $1"
|
|
|
|
_usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
2019-11-22 15:03:50 +01:00
|
|
|
shift
|
2020-12-15 16:04:55 +01:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function _version() {
|
|
|
|
echo -e "RaspAP v${RASPAP_LATEST} - Simple AP setup & WiFi management for Debian-based devices"
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
|
|
|
_parse_params "$@"
|
|
|
|
_setup_colors
|
|
|
|
_log_output
|
2019-09-30 19:58:12 +02:00
|
|
|
|
2019-11-11 09:51:45 +01:00
|
|
|
UPDATE_URL="https://raw.githubusercontent.com/$repo/$branch/"
|
|
|
|
|
2019-11-07 09:44:13 +01:00
|
|
|
# Outputs a welcome message
|
2020-03-23 10:31:18 +01:00
|
|
|
function _display_welcome() {
|
2020-04-10 11:40:21 +02:00
|
|
|
echo -e "${ANSI_RASPBERRY}\n"
|
2019-11-07 09:44:13 +01:00
|
|
|
echo -e " 888888ba .d888888 888888ba"
|
|
|
|
echo -e " 88 8b d8 88 88 8b"
|
|
|
|
echo -e "a88aaaa8P' .d8888b. .d8888b. 88d888b. 88aaaaa88a a88aaaa8P"
|
|
|
|
echo -e " 88 8b. 88 88 Y8ooooo. 88 88 88 88 88"
|
|
|
|
echo -e " 88 88 88. .88 88 88. .88 88 88 88"
|
|
|
|
echo -e " dP dP 88888P8 88888P 88Y888P 88 88 dP"
|
|
|
|
echo -e " 88"
|
2020-03-20 12:06:36 +01:00
|
|
|
echo -e " dP version ${RASPAP_LATEST}"
|
2020-04-10 11:40:21 +02:00
|
|
|
echo -e "${ANSI_GREEN}"
|
|
|
|
echo -e "The Quick Installer will guide you through a few easy steps${ANSI_RESET}\n\n"
|
2019-11-07 09:44:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Outputs a RaspAP Install log line
|
2020-03-23 10:31:18 +01:00
|
|
|
function _install_log() {
|
2020-04-10 11:40:21 +02:00
|
|
|
echo -e "${ANSI_GREEN}RaspAP Install: $1${ANSI_RESET}"
|
2019-11-07 09:44:13 +01:00
|
|
|
}
|
|
|
|
|
2020-04-25 23:06:02 +02:00
|
|
|
# Outputs a RaspAP divider
|
|
|
|
function _install_divider() {
|
|
|
|
echo -e "\033[1;32m***************************************************************$*\033[m"
|
|
|
|
}
|
|
|
|
|
2020-04-10 11:40:21 +02:00
|
|
|
# Outputs a RaspAP status indicator
|
|
|
|
function _install_status() {
|
|
|
|
case $1 in
|
|
|
|
0)
|
|
|
|
echo -e "[$ANSI_GREEN \U2713 ok $ANSI_RESET] $2"
|
|
|
|
;;
|
|
|
|
1)
|
|
|
|
echo -e "[$ANSI_RED \U2718 error $ANSI_RESET] $ANSI_ERROR $2 $ANSI_RESET"
|
|
|
|
;;
|
|
|
|
2)
|
|
|
|
echo -e "[$ANSI_YELLOW \U26A0 warning $ANSI_RESET] $2"
|
|
|
|
;;
|
|
|
|
esac
|
2019-11-07 11:41:56 +01:00
|
|
|
}
|
|
|
|
|
2020-03-23 10:31:18 +01:00
|
|
|
function _update_system_packages() {
|
|
|
|
_install_log "Updating sources"
|
2020-12-15 16:04:55 +01:00
|
|
|
sudo apt-get update || _install_status 1 "Unable to update package list"
|
2016-06-16 12:03:29 +02:00
|
|
|
}
|
|
|
|
|
2019-12-09 13:07:57 +01:00
|
|
|
# Fetch required installer functions
|
2019-11-07 09:44:13 +01:00
|
|
|
if [ "${install_cert:-}" = 1 ]; then
|
|
|
|
source="mkcert"
|
2019-11-07 21:12:41 +01:00
|
|
|
wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source}.sh
|
2019-11-07 14:48:30 +01:00
|
|
|
source /tmp/raspap_${source}.sh && rm -f /tmp/raspap_${source}.sh
|
2020-04-19 13:35:29 +02:00
|
|
|
_install_certificate || _install_status 1 "Unable to install certificate"
|
2019-11-07 09:44:13 +01:00
|
|
|
else
|
|
|
|
source="common"
|
2019-11-07 21:12:41 +01:00
|
|
|
wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source}.sh
|
2019-11-07 14:48:30 +01:00
|
|
|
source /tmp/raspap_${source}.sh && rm -f /tmp/raspap_${source}.sh
|
2020-04-19 13:35:29 +02:00
|
|
|
_install_raspap || _install_status 1 "Unable to install RaspAP"
|
2019-11-07 09:44:13 +01:00
|
|
|
fi
|
|
|
|
|