Apply kardianos/service PR #144

This commit is contained in:
Frank Denis 2018-08-23 00:25:56 +02:00
parent e3d5f3e6e5
commit 40f2dc6a7d
2 changed files with 4 additions and 3 deletions

View file

@ -11,6 +11,7 @@ import (
"os/signal"
"regexp"
"strings"
"syscall"
"text/template"
"time"
)
@ -186,7 +187,7 @@ func (s *upstart) Run() (err error) {
s.Option.funcSingle(optionRunWait, func() {
var sigChan = make(chan os.Signal, 3)
signal.Notify(sigChan, os.Interrupt, os.Kill)
signal.Notify(sigChan, syscall.SIGTERM, os.Interrupt)
<-sigChan
})()