Browse Source

Merge pull request #4809 from winromulus/dev

fix: Synology DSM API path regex
pull/4820/head
neil 1 year ago
committed by GitHub
parent
commit
6e163208b4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      deploy/synology_dsm.sh

2
deploy/synology_dsm.sh

@ -91,7 +91,7 @@ synology_dsm_deploy() {
_debug "Getting API version"
response=$(_get "$_base_url/webapi/query.cgi?api=SYNO.API.Info&version=1&method=query&query=SYNO.API.Auth")
api_path=$(echo "$response" | grep "SYNO.API.Auth" | sed -n 's/.*"path" *: *"\([0-9]*\)".*/\1/p')
api_path=$(echo "$response" | grep "SYNO.API.Auth" | sed -n 's/.*"path" *: *"\([^"]*\)".*/\1/p')
api_version=$(echo "$response" | grep "SYNO.API.Auth" | sed -n 's/.*"maxVersion" *: *\([0-9]*\).*/\1/p')
_debug3 response "$response"
_debug3 api_path "$api_path"

Loading…
Cancel
Save