Skip to content

Commit

Permalink
Merge pull request #1561 from RaspAP/fix/installer-options
Browse files Browse the repository at this point in the history
Update install option vars, use indirect expansion
  • Loading branch information
billz authored Apr 1, 2024
2 parents 655b126 + 87143e1 commit 9fc38ff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions installers/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -344,11 +344,11 @@ function _install_lighttpd_configs() {

function _prompt_install_features() {
readonly features=(
"Ad blocking:Install Ad blocking and enable list management:adblock:_install_adblock"
"OpenVPN:Install OpenVPN and enable client configuration:ovpn:_install_openvpn"
"RestAPI:Install and enable RestAPI:restapi:_install_restapi"
"WireGuard:Install WireGuard and enable VPN tunnel configuration:wg:_install_wireguard"
"VPN provider:Enable VPN provider client configuration:pv:_install_provider"
"Ad blocking:Install Ad blocking and enable list management:adblock_option:_install_adblock"
"OpenVPN:Install OpenVPN and enable client configuration:ovpn_option:_install_openvpn"
"RestAPI:Install and enable RestAPI:restapi_option:_install_restapi"
"WireGuard:Install WireGuard and enable VPN tunnel configuration:wg_option:_install_wireguard"
"VPN provider:Enable VPN provider client configuration:pv_option:_install_provider"
)
for feature in "${features[@]}"; do
IFS=':' read -r -a feature_details <<< "$feature"
Expand All @@ -371,7 +371,7 @@ function _prompt_install_feature() {
else
$function
fi
elif [ "${opt}_option" == 1 ]; then
elif [ "${!opt}" == 1 ]; then
$function
else
echo "(Skipped)"
Expand Down

0 comments on commit 9fc38ff

Please sign in to comment.