add runit support
[arvados.git] / services / boot / controller.go
1 package main
2
3 import (
4         "context"
5 )
6
7 type controller struct{}
8
9 func (c *controller) Boot(ctx context.Context) error {
10         return Series{
11                 Concurrent{
12                         cfg(ctx),
13                         installCerts,
14                 },
15                 Concurrent{
16                         consul,
17                 },
18         }.Boot(ctx)
19 }