1.0.0 Rework #25

Merged
Neshura merged 25 commits from v2 into main 2023-12-27 20:26:16 +00:00
Showing only changes of commit 251771f3c3 - Show all commits

View file

@ -276,27 +276,19 @@ fn main() {
} }
if let Some(cf_entry) = cf_entry { if let Some(cf_entry) = cf_entry {
match cf_zone.update(entry, r#type, &cf_entry.id, ipv6, ipv4) { if cf_zone.update(entry, r#type, &cf_entry.id, ipv6, ipv4).is_ok() {
Ok(_) => {
let info_msg = format!("Updated {} DNS Record for entry '{}' in zone '{}'", r#type, entry.name, zone.name); let info_msg = format!("Updated {} DNS Record for entry '{}' in zone '{}'", r#type, entry.name, zone.name);
match connected_to_journal() { match connected_to_journal() {
true => warn!("[INFO] {info_msg}"), true => warn!("[INFO] {info_msg}"),
false => println!("[INFO] {info_msg}"), false => println!("[INFO] {info_msg}"),
} }
},
Err(_) => {},
};
} }
else { }
match cf_zone.create(entry, r#type, ipv6, ipv4) { else if cf_zone.create(entry, r#type, ipv6, ipv4).is_ok() {
Ok(_) => {
let info_msg = format!("Created {} DNS Record for entry '{}' in zone '{}'", r#type, entry.name, zone.name); let info_msg = format!("Created {} DNS Record for entry '{}' in zone '{}'", r#type, entry.name, zone.name);
match connected_to_journal() { match connected_to_journal() {
true => info!("[INFO] {info_msg}"), true => info!("[INFO] {info_msg}"),
false => println!("[INFO] {info_msg}"), false => println!("[INFO] {info_msg}"),
}
},
Err(_) => {},
}; };
} }
} }