1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

faster startup with smb

This commit is contained in:
Robin Appelman 2022-02-15 20:14:34 +01:00
commit a9083843e6

View file

@ -17,10 +17,6 @@ impl ServiceTrait for Smb {
"smb"
}
fn env(&self) -> &[&str] {
&[]
}
async fn spawn(
&self,
docker: &Docker,
@ -78,6 +74,7 @@ impl ServiceTrait for Smb {
&["files_external"]
}
// no need to wait for smb, as it won't be used until the user logs in
async fn is_healthy(&self, _docker: &Docker, _cloud_id: &str) -> Result<bool> {
Ok(true)
}