-
Notifications
You must be signed in to change notification settings - Fork 86
/
main.go
69 lines (55 loc) · 1.09 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package main
import (
"context"
"flag"
"log"
"os"
"os/signal"
"github.com/mehrdadrad/radvpn/config"
"github.com/mehrdadrad/radvpn/router"
"github.com/mehrdadrad/radvpn/server"
)
var (
configFile string
update string
etcd bool
cfg *config.Config
)
func init() {
flag.StringVar(&configFile, "config", "", "configuration file")
flag.StringVar(&update, "update", "", "update etc / file")
flag.BoolVar(&etcd, "etcd", false, "enable etcd")
flag.Parse()
}
func main() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
if update != "" {
err := config.UpdateConf(update, configFile)
if err != nil {
log.Println(err)
}
os.Exit(0)
}
sig := make(chan os.Signal, 1)
signal.Notify(sig, os.Interrupt, os.Kill)
if etcd {
cfg = config.New().FromEtcd(configFile)
} else {
cfg = config.New().FromFile(configFile)
}
err := cfg.Load()
if err != nil {
log.Fatal(err)
}
notify := make(chan struct{}, 1)
cfg.Watcher(ctx, notify)
r := router.New(ctx)
s := server.Server{
Config: cfg,
Router: r,
Notify: notify,
}
s.Run(ctx)
<-sig
}