Merge pull request #2020 from RaspAP/fix/installer-set-package

Fix: Add missing test brackets for kali check
This commit is contained in:
Bill Zimmerman
2025-12-01 17:37:07 +01:00
committed by GitHub

View File

@@ -246,7 +246,7 @@ function _install_dependencies() {
else
echo "${php_package} will be installed from the main deb sources list"
fi
if [ ${OS,,} = "debian" ] || [ ${OS,,} = "ubuntu" || ${OS,,} = "kali" ]; then
if [ ${OS,,} = "debian" ] || [ ${OS,,} = "ubuntu" ] || [ ${OS,,} = "kali" ]; then
dhcpcd_package="dhcpcd5"
iw_package="iw"
rsync_package="rsync"