Merge pull request #4 from crowdsecurity/fix_wizard_armhf

add the ability for the wizard to work on raspbian
This commit is contained in:
Manuel Sabban 2021-12-29 11:55:52 +01:00 committed by GitHub
commit ced64cd2f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,7 +132,7 @@ detect_services () {
fi;
done;
done;
if [[ ${OSTYPE} == "linux-gnu" ]]; then
if [[ ${OSTYPE} == "linux-gnu" ]] || [[ ${OSTYPE} == "linux-gnueabihf" ]]; then
DETECTED_SERVICES+=("linux")
HMENU+=("linux" "on")
else