netbird/client/cmd/service.go

46 lines
973 B
Go
Raw Normal View History

2021-06-19 14:55:45 +02:00
package cmd
import (
"context"
2021-06-19 14:55:45 +02:00
"github.com/kardianos/service"
log "github.com/sirupsen/logrus"
2021-06-19 14:55:45 +02:00
"github.com/spf13/cobra"
"google.golang.org/grpc"
"github.com/wiretrustee/wiretrustee/client/internal"
2021-06-19 14:55:45 +02:00
)
type program struct {
ctx context.Context
cancel context.CancelFunc
serv *grpc.Server
}
func newProgram(ctx context.Context, cancel context.CancelFunc) *program {
ctx = internal.CtxInitState(ctx)
return &program{ctx: ctx, cancel: cancel}
}
2021-06-19 14:55:45 +02:00
func newSVCConfig() *service.Config {
return &service.Config{
Name: "wiretrustee",
DisplayName: "Wiretrustee",
Description: "A WireGuard-based mesh network that connects your devices into a single private network.",
2021-06-19 14:55:45 +02:00
}
}
func newSVC(prg *program, conf *service.Config) (service.Service, error) {
s, err := service.New(prg, conf)
if err != nil {
log.Fatal(err)
return nil, err
}
return s, nil
}
var serviceCmd = &cobra.Command{
Use: "service",
Short: "manages wiretrustee service",
}