projects
/
dyn-nsupdate.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
more verbose
[dyn-nsupdate.git]
/
client-scripts
/
dyn-ns-client
diff --git
a/client-scripts/dyn-ns-client
b/client-scripts/dyn-ns-client
index 93b977ff57b193c249972c010804a2be5197b07e..85c291054ae72f60b6ffa3b435db55ed6dbfcee1 100755
(executable)
--- a/
client-scripts/dyn-ns-client
+++ b/
client-scripts/dyn-ns-client
@@
-143,6
+143,8
@@
def updateDomain(server, domain, ipv4, ipv6, password, config, verbose):
if ipv6 is not None:
url += '&ipv6='+urllib.parse.quote(ipv6)
expected += " "+ipv6
if ipv6 is not None:
url += '&ipv6='+urllib.parse.quote(ipv6)
expected += " "+ipv6
+ if verbose >= VERBOSE_FULL:
+ print("Request:",url)
result = urlopen(url, config)
# did everything go as planned?
result = urlopen(url, config)
# did everything go as planned?
@@
-167,7
+169,7
@@
def updateDomain(server, domain, ipv4, ipv6, password, config, verbose):
else:
# Something went wrong
print("Unexpected answer from server",server,"while updating",domain)
else:
# Something went wrong
print("Unexpected answer from server",server,"while updating",domain)
- print(
result
)
+ print(
"Got '{}', expected '{}'".format(result, expected)
)
return False
if __name__ == "__main__":
return False
if __name__ == "__main__":