You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deploy.sh fails for me as I get the following when executing:
root@UDMP:/data/letsencrypt/ubios-cert-main# ./deploy.sh
Unsupported model: UniFi Dream Machine Pro
Adding an echo just before the case statement shows that ${MODEL} evaluates to just "UniFi" and hence why the case statement fails... something to do with spaces in the variable. Not sure how to fix this as I'm no bsh expert.
ubios-cert.sh also needs updated code to handle UDMPro 2.4.23 as was done for deploy.sh - see excerpt below:
# When running in UDM SE / UDR, the applications are not running in containers
case "$(ubnt-device-info model || true)" in "UniFi Dream Machine SE"|"UniFi Dream Router")
# But here, the same command will be executed but inside unifi-os container
IS_UNIFI_2='true'
;;
esac
The text was updated successfully, but these errors were encountered:
Like the chages to deploy.sh to cater for 2.x being rolled out in EA
update the captive portal support to look at the firmware version when
deciding to use podman or not. Fixesalxwolf#32
Signed-off-by: Dennis Gilmore <dennis@ausil.us>
deploy.sh
fails for me as I get the following when executing:Adding an echo just before the case statement shows that ${MODEL} evaluates to just
"UniFi"
and hence why the case statement fails... something to do with spaces in the variable. Not sure how to fix this as I'm no bsh expert.ubios-cert.sh
also needs updated code to handle UDMPro 2.4.23 as was done fordeploy.sh
- see excerpt below:The text was updated successfully, but these errors were encountered: