diff --git a/installers/common.sh b/installers/common.sh index bec35c32..9cb11e5e 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -505,7 +505,7 @@ function _prompt_install_openvpn() { # Prompt to install restapi function _prompt_install_restapi() { - _install_log "Configure restapi" + _install_log "Configure RestAPI" echo -n "Install and enable RestAPI? [Y/n]: " if [ "$assume_yes" == 0 ]; then read answer < /dev/tty diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 29b14e25..0626faab 100755 --- a/installers/raspbian.sh +++ b/installers/raspbian.sh @@ -40,7 +40,7 @@ OPTIONS: -y, --yes, --assume-yes Assumes "yes" as an answer to all prompts -c, --cert, --certificate Installs an SSL certificate for lighttpd -o, --openvpn Used with -y, --yes, sets OpenVPN install option (0=no install) ---rest Used with -y, --yes, sets RestAPI install option (0=no install) +-s, --rest, --restapi Used with -y, --yes, sets RestAPI install option (0=no install) -a, --adblock Used with -y, --yes, sets Adblock install option (0=no install) -w, --wireguard Used with -y, --yes, sets WireGuard install option (0=no install) -e, --provider Used with -y, --yes, sets the VPN provider install option @@ -113,7 +113,7 @@ function _parse_params() { ovpn_option="$2" shift ;; - --api|--rest|--restapi) + -s|--rest|--restapi) restapi_option="$2" shift ;;