forked from ochinchina/supervisord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
43 lines (37 loc) · 909 Bytes
/
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
package main
import (
"os"
"os/signal"
log "github.com/Sirupsen/logrus"
"github.com/jessevdk/go-flags"
"syscall"
)
type Options struct {
Configuration string `short:"c" long:"configuration" description:"the configuration file" default:"supervisord.conf"`
}
func init() {
log.SetOutput(os.Stdout)
log.SetLevel(log.DebugLevel)
}
func initSignals( s* Supervisor) {
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
go func() {
sig := <-sigs
log.WithFields( log.Fields{"signal": sig}).Info( "receive a signal to stop all process & xit" )
s.procMgr.ForEachProcess( func (proc *Process) {
proc.Stop( true )
})
os.Exit(-1)
}()
}
func main() {
var options Options
var parser = flags.NewParser(&options, flags.Default)
parser.Parse()
s := NewSupervisor(options.Configuration)
initSignals( s )
if err := s.Reload(); err != nil {
panic(err)
}
}