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:
parent
e76678ec14
commit
88a4100340
4 changed files with 26 additions and 9 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue