Remove os.Kill from POSIX platforms where it can't be caught

This commit is contained in:
Rob Napier
2015-03-13 17:52:30 -04:00
parent 34797be7d7
commit 4d849b25a4
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ func (s *systemd) Run() (err error) {
sigChan := make(chan os.Signal, 3)
signal.Notify(sigChan, syscall.SIGTERM, os.Interrupt, os.Kill)
signal.Notify(sigChan, syscall.SIGTERM, os.Interrupt)
<-sigChan