X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=src%2Fmain.rs;h=67c251a9b668376c6eaf081fa6151b63160bedbd;hb=f66ea654402cb0a44d075466a1a55a89b5512e4a;hp=2a9b5e43887c7d19cea4c2a00c9bdb21d666cb79;hpb=52284b0325bfc45c902884c0c3633d8147767941;p=gandi_dns_update.git diff --git a/src/main.rs b/src/main.rs index 2a9b5e4..67c251a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,7 +11,7 @@ #![cfg_attr(debug_assertions, allow(unused_variables, unused_imports, dead_code))] -use std::{ fmt::format, fs::File, net::{ IpAddr, Ipv4Addr }, thread, time }; +use std::{ fs::File, net::{ IpAddr, Ipv4Addr }, thread, time }; use ron::{ de::from_reader, ser::to_writer }; use serde::{ Deserialize, Serialize }; use serde_json::{ Value, json }; @@ -88,11 +88,9 @@ fn main() -> Result<()> { fn check_and_update_dns(api_key: &str, fqdn: &str, domains: &Vec, ttl: i32) -> Result<()> { let real_ip = get_real_ip()?; - dbg!(&real_ip); for domain in domains { let current_ip = get_current_record_ip(api_key, domain, fqdn)?; - dbg!(domain, current_ip); if real_ip != current_ip { println!("IP addresses don't match for domain {}: real = {}, dns = {}. Renewing DNS...", domain, real_ip, current_ip); @@ -177,7 +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()))?; - dbg!(json_value); + println!("Update response: {}", json_value); Ok(()) }