mirror of https://github.com/slackhq/nebula.git
don't steal error
This commit is contained in:
parent
9333a8e3b7
commit
f03d895ebf
5
main.go
5
main.go
|
@ -79,10 +79,13 @@ func Main(configPath string, configTest bool, buildVersion string) {
|
|||
// TODO: make sure mask is 4 bytes
|
||||
tunCidr := cs.certificate.Details.Ips[0]
|
||||
routes, err := parseRoutes(config, tunCidr)
|
||||
unsafeRoutes, err := parseUnsafeRoutes(config, tunCidr)
|
||||
if err != nil {
|
||||
l.WithError(err).Fatal("Could not parse tun.routes")
|
||||
}
|
||||
unsafeRoutes, err := parseUnsafeRoutes(config, tunCidr)
|
||||
if err != nil {
|
||||
l.WithError(err).Fatal("Could not parse tun.unsafe_routes")
|
||||
}
|
||||
|
||||
ssh, err := sshd.NewSSHServer(l.WithField("subsystem", "sshd"))
|
||||
wireSSHReload(ssh, config)
|
||||
|
|
Loading…
Reference in New Issue