1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-04 17:44:11 +02:00

show proxy addr for ldap-admin in startup message

This commit is contained in:
Robin Appelman 2026-03-09 18:08:34 +01:00
commit 88a4100340
4 changed files with 26 additions and 9 deletions

View file

@ -493,6 +493,7 @@ impl Cloud {
containers.push(container);
let options_clone = options.clone();
let proxy_config = config.proxy.clone();
let cloud_id = id.clone();
let docker_clone = docker.clone();
spawn(async move {
@ -506,7 +507,10 @@ impl Cloud {
return;
}
for service in options_clone.services {
match service.start_message(&docker_clone, &cloud_id).await {
match service
.start_message(&docker_clone, &cloud_id, &proxy_config)
.await
{
Ok(Some(msg)) => {
println!("{}", msg);
}