Commit 3c79bb77 authored by ThiloGa's avatar ThiloGa
Browse files

fixing travis-ci warnings SC2086: Double quote to prevent globbing and word splitting.

parent d8dbb859
...@@ -32,7 +32,7 @@ dns_nm_add() { ...@@ -32,7 +32,7 @@ dns_nm_add() {
_saveaccountconf_mutable NM_user "$NM_user" _saveaccountconf_mutable NM_user "$NM_user"
_saveaccountconf_mutable NM_md5 "$NM_md5" _saveaccountconf_mutable NM_md5 "$NM_md5"
zone="$(echo $fulldomain | _egrep_o "[^.]+.[^.]+$")" zone="$(echo "$fulldomain" | _egrep_o "[^.]+.[^.]+$")"
get="https://namemaster.de/api/api.php?User=$NM_user&Password=$NM_md5&Antwort=csv&Int=0&Typ=ACME&Zone=$zone&hostname=$fulldomain&TXT=$txt_value&Action=Auto&Lifetime=3600" get="https://namemaster.de/api/api.php?User=$NM_user&Password=$NM_md5&Antwort=csv&Int=0&Typ=ACME&Zone=$zone&hostname=$fulldomain&TXT=$txt_value&Action=Auto&Lifetime=3600"
if ! erg="$(_get "$get")"; then if ! erg="$(_get "$get")"; then
...@@ -66,7 +66,7 @@ dns_nm_rm() { ...@@ -66,7 +66,7 @@ dns_nm_rm() {
return 1 return 1
fi fi
zone="$(echo $fulldomain | _egrep_o "[^.]+.[^.]+$")" zone="$(echo "$fulldomain" | _egrep_o "[^.]+.[^.]+$")"
get="https://namemaster.de/api/api.php?User=$NM_user&Password=$NM_md5&Antwort=csv&Int=0&Typ=TXT&Zone=$zone&hostname=$fulldomain&TXT=$txt_value&Action=Delete_IN&TTL=0" get="https://namemaster.de/api/api.php?User=$NM_user&Password=$NM_md5&Antwort=csv&Int=0&Typ=TXT&Zone=$zone&hostname=$fulldomain&TXT=$txt_value&Action=Delete_IN&TTL=0"
if ! erg="$(_get "$get")"; then if ! erg="$(_get "$get")"; then
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment