-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
65 lines (52 loc) · 1.13 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
package main
import (
"flag"
"fmt"
"log"
"os"
"runtime"
"github.com/toolkits/logger"
"github.com/toolkits/sys"
"github.com/coraldane/ops-updater/cron"
"github.com/coraldane/ops-updater/g"
"github.com/coraldane/ops-updater/http"
)
func main() {
cfg := flag.String("c", "cfg.json", "configuration file")
version := flag.Bool("v", false, "show version")
flag.Parse()
if *version {
fmt.Println(g.VERSION)
os.Exit(0)
}
if err := g.ParseConfig(*cfg); err != nil {
log.Fatalln(err)
}
g.InitGlobalVariables()
logger.SetLevelWithDefault(g.Config().LogLevel, "info")
CheckDependency()
go http.Start()
go cron.Heartbeat()
select {}
}
func CheckDependency() {
_, err := sys.CmdOut("wget", "--help")
if err != nil {
log.Fatalln("dependency wget not found")
}
if "darwin" == runtime.GOOS {
_, err = sys.CmdOut("md5", "/etc/hosts")
if err != nil {
log.Fatalln("dependency md5 not found")
}
} else {
_, err = sys.CmdOut("md5sum", "--help")
if err != nil {
log.Fatalln("dependency md5sum not found")
}
}
_, err = sys.CmdOut("tar", "--help")
if err != nil {
log.Fatalln("dependency tar not found")
}
}