chore: cargo fmt
Some checks failed
Run Check Script / check (pull_request) Failing after 37s

This commit is contained in:
2025-08-23 15:48:21 -04:00
parent c805d7e018
commit 6c92dd24f7
10 changed files with 29 additions and 22 deletions

View File

@@ -187,12 +187,10 @@ dhcp-boot=tag:bios,{bios_filename}{tftp_str}
})?;
info!("Restarting dnsmasq to apply changes");
self.opnsense_shell.exec("configctl dnsmasq restart").await
.map_err(|e| {
DhcpError::Configuration(format!(
"Restarting dnsmasq failed : {e}"
))
})?;
self.opnsense_shell
.exec("configctl dnsmasq restart")
.await
.map_err(|e| DhcpError::Configuration(format!("Restarting dnsmasq failed : {e}")))?;
Ok(())
}
}

View File

@@ -1,7 +1,7 @@
pub mod caddy;
pub mod dhcp;
pub mod dhcp_legacy;
pub mod dns;
pub mod dnsmasq;
pub mod load_balancer;
pub mod tftp;
pub mod dhcp;
pub mod dnsmasq;