Fix default Syno port to match documentation that says it defaults to 5001 when scheme is https

This commit is contained in:
Hossy 2022-07-20 15:58:27 -05:00
parent 1b59b0b739
commit be64738c8b

View File

@ -58,7 +58,7 @@ synology_dsm_deploy() {
# defaulting to localhost and http because it's localhost...
[ -n "${SYNO_Scheme}" ] || SYNO_Scheme="http"
[ -n "${SYNO_Hostname}" ] || SYNO_Hostname="localhost"
[ -n "${SYNO_Port}" ] || SYNO_Port="5000"
[ -n "${SYNO_Port}" ] || SYNO_Port=$( [ $(echo $SYNO_Scheme | tr '[:upper:]' '[:lower:]') = "https" ] && echo '5001' || echo '5000' )
_savedeployconf SYNO_Scheme "$SYNO_Scheme"
_savedeployconf SYNO_Hostname "$SYNO_Hostname"