mirror of
https://github.com/netbirdio/netbird.git
synced 2025-06-01 23:55:44 +02:00
* feature: replace RegisterPeer with Login method that does both - registration and login * test: add management login test * feature: add WiretrusteeConfig to the Login response to configure peer global config * feature: add client peer login support * fix: missing parts * chore: update go deps * feature: support Management Service gRPC endpoints [CLIENT] * feature: finalize client sync with management * fix: management store peer key lower case restore * fix: management returns peer ip without a mask * refactor: remove cmd pkg * fix: invalid tun interface name on mac * fix: timeout when calling management client * fix: tests and lint errors * fix: golang-test workflow * fix: client service tests * fix: iface build * feature: detect management scheme on startup * chore: better logs for management * fix: goreleaser * fix: lint errors * fix: signal TLS * fix: direct Wireguard connection * chore: verbose logging on direct connection
49 lines
883 B
Go
49 lines
883 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/kardianos/service"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type program struct {
|
|
cmd *cobra.Command
|
|
args []string
|
|
}
|
|
|
|
var logger service.Logger
|
|
|
|
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.",
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
logger, err = s.Logger(nil)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
return nil, err
|
|
}
|
|
return s, nil
|
|
}
|
|
|
|
var (
|
|
serviceCmd = &cobra.Command{
|
|
Use: "service",
|
|
Short: "manages wiretrustee service",
|
|
//Run: func(cmd *cobra.Command, args []string) {
|
|
//},
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
}
|