mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-09 16:01:46 +00:00
Update dns_he.sh
If you have a password with special char it will fail at Remove record
This commit is contained in:
parent
6a81b0f807
commit
4c1f70af4b
@ -92,7 +92,9 @@ dns_he_rm() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
# Remove the record
|
# Remove the record
|
||||||
body="email=${HE_Username}&pass=${HE_Password}"
|
username_encoded="$(printf "%s" "${HE_Username}" | _url_encode)"
|
||||||
|
password_encoded="$(printf "%s" "${HE_Password}" | _url_encode)"
|
||||||
|
body="email=${username_encoded}&pass=${password_encoded}"
|
||||||
body="$body&menu=edit_zone"
|
body="$body&menu=edit_zone"
|
||||||
body="$body&hosted_dns_zoneid=$_zone_id"
|
body="$body&hosted_dns_zoneid=$_zone_id"
|
||||||
body="$body&hosted_dns_recordid=$_record_id"
|
body="$body&hosted_dns_recordid=$_record_id"
|
||||||
|
Loading…
Reference in New Issue
Block a user