mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-04 01:24:09 +02:00
basic ldap
This commit is contained in:
parent
2627bb9427
commit
8f3405fabe
7 changed files with 286 additions and 9 deletions
11
src/main.rs
11
src/main.rs
|
|
@ -89,6 +89,17 @@ async fn main() -> Result<()> {
|
|||
false,
|
||||
)
|
||||
.await?;
|
||||
for service in &cloud.services {
|
||||
for app in service.apps() {
|
||||
cloud
|
||||
.exec(
|
||||
&mut docker,
|
||||
vec!["occ", "app:enable", *app, "--force"],
|
||||
false,
|
||||
)
|
||||
.await?;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
HazeArgs::Stop { filter } => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue