projects
/
gandi_dns_update.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
0105f94
)
Display the DNS update response
author
Greg Burri
<greg.burri@gmail.com>
Tue, 13 Jul 2021 18:31:07 +0000
(20:31 +0200)
committer
Greg Burri
<greg.burri@gmail.com>
Tue, 13 Jul 2021 18:31:07 +0000
(20:31 +0200)
src/main.rs
patch
|
blob
|
history
diff --git
a/src/main.rs
b/src/main.rs
index
280b718
..
67c251a
100644
(file)
--- a/
src/main.rs
+++ b/
src/main.rs
@@
-175,5
+175,7
@@
fn update_record_ip(api_key: &str, name: &str, fqdn: &str, ip: Ipv4Addr, ttl: i3
let json_value = request_livedns_gandi(api_key, &format!("domains/{}/records/{}/A", fqdn, name), Method::Put(json_body.to_string()))?;
+ println!("Update response: {}", json_value);
+
Ok(())
}