update documentation, and a minor change to the signal handler in yggdrasil.go

This commit is contained in:
Arceliar 2018-01-25 18:58:33 -06:00
parent 742a755bb7
commit 6b2937bcd0
2 changed files with 7 additions and 3 deletions

View file

@ -277,7 +277,7 @@ func main() {
}
// Catch interrupt to exit gracefully
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
signal.Notify(c, os.Interrupt, os.Kill)
<-c
logger.Println("Stopping...")
}