overflow_probe_container_ne.../main.go
crusader 514a2b348c ing
2017-12-18 17:55:05 +09:00

52 lines
902 B
Go

package main
import (
"flag"
"log"
"os"
"os/signal"
"syscall"
"git.loafle.net/commons_go/logging"
"git.loafle.net/overflow/overflow_probe_container_network/server"
)
var (
pidPath *string
)
func init() {
pidPath = flag.String("pid-path", "/tmp/network-container.pid", "The path of pid file")
flag.Parse()
}
func main() {
defer logging.Logger().Sync()
s := server.New(*pidPath)
go func() {
if err := s.Start(); nil != err {
log.Printf("Server: Start error %v", err)
return
}
}()
// // Set up channel on which to send signal notifications.
// // We must use a buffered channel or risk missing the signal
// // if we're not ready to receive when the signal is sent.
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt,
syscall.SIGKILL,
syscall.SIGSTOP,
syscall.SIGHUP,
syscall.SIGINT,
syscall.SIGTERM,
syscall.SIGQUIT)
<-interrupt
s.Stop()
}