mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	Minor: comments + get_release()
This commit is contained in:
		@@ -15,11 +15,11 @@
 | 
			
		||||
# -c, --cert, --certficate          Installs mkcert and generates 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 (raspap/raspap-webgui)
 | 
			
		||||
# -r, --repo, --repository <name>   Overrides the default GitHub repo (RaspAP/raspap-webgui)
 | 
			
		||||
# -b, --branch <name>               Overrides the default git branch (master)
 | 
			
		||||
# -t, --token <accesstoken>         Specify a GitHub token to access a private repository
 | 
			
		||||
# -u, --upgrade                     Upgrades an existing installation to the latest release version
 | 
			
		||||
# -i, --insiders                    Installs from the Insiders Edition (raspap/raspap-insiders)
 | 
			
		||||
# -i, --insiders                    Installs from the Insiders Edition (RaspAP/raspap-insiders)
 | 
			
		||||
# -v, --version                     Outputs release info and exits
 | 
			
		||||
# -h, --help                        Outputs usage notes and exits
 | 
			
		||||
#
 | 
			
		||||
@@ -45,7 +45,7 @@ function _main() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function _parse_params() {
 | 
			
		||||
    # default flag values
 | 
			
		||||
    # default option values
 | 
			
		||||
    assume_yes=0
 | 
			
		||||
    upgrade=0
 | 
			
		||||
    ovpn_option=1
 | 
			
		||||
@@ -132,11 +132,11 @@ OPTIONS:
 | 
			
		||||
-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 (raspap/raspap-webgui)
 | 
			
		||||
-r, --repo, --repository <name>     Overrides the default GitHub repo (RaspAP/raspap-webgui)
 | 
			
		||||
-b, --branch <name>                 Overrides the default git branch (latest release)
 | 
			
		||||
-t, --token <accesstoken>           Specify a GitHub token to access a private repository
 | 
			
		||||
-u, --upgrade                       Upgrades an existing installation to the latest release version
 | 
			
		||||
-i, --insiders                      Installs from the Insiders Edition (raspap/raspap-insiders)
 | 
			
		||||
-i, --insiders                      Installs from the Insiders Edition (RaspAP/raspap-insiders)
 | 
			
		||||
-v, --version                       Outputs release info and exits
 | 
			
		||||
-h, --help                          Outputs usage notes and exits
 | 
			
		||||
 | 
			
		||||
@@ -173,19 +173,19 @@ function _display_welcome() {
 | 
			
		||||
    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"
 | 
			
		||||
    echo -e "                             dP       version ${RASPAP_RELEASE}"
 | 
			
		||||
    echo -e "                             dP      version ${RASPAP_RELEASE}"
 | 
			
		||||
    echo -e "${ANSI_GREEN}"
 | 
			
		||||
    echo -e "The Quick Installer will guide you through a few easy steps${ANSI_RESET}\n\n"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Fetch latest release from GitHub or RaspAP Installer API
 | 
			
		||||
function _get_release() {
 | 
			
		||||
    readonly RASPAP_LATEST=$(curl -s "https://api.github.com/repos/$repo/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' )
 | 
			
		||||
    if [ "$insiders" == 1 ]; then
 | 
			
		||||
        RASPAP_INSIDERS_LATEST=$(curl -s "https://install.raspap.com/repos/RaspAP/raspap-insiders/releases/latest/" | grep -Po '"tag_name": "\K.*?(?=")' )
 | 
			
		||||
        RASPAP_RELEASE="${RASPAP_INSIDERS_LATEST} Insiders"
 | 
			
		||||
        readonly RASPAP_INSIDERS_LATEST=$(curl -s "https://install.raspap.com/repos/RaspAP/raspap-insiders/releases/latest/" | grep -Po '"tag_name": "\K.*?(?=")' )
 | 
			
		||||
        readonly RASPAP_RELEASE="${RASPAP_INSIDERS_LATEST} Insiders"
 | 
			
		||||
    else
 | 
			
		||||
        RASPAP_RELEASE="${RASPAP_LATEST}"
 | 
			
		||||
        readonly RASPAP_LATEST=$(curl -s "https://api.github.com/repos/$repo/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' )
 | 
			
		||||
        readonly RASPAP_RELEASE="${RASPAP_LATEST}"
 | 
			
		||||
    fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user