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
|
package main
import (
"fmt"
"math/rand"
"os"
"os/signal"
"syscall"
"time"
"github.com/kong/deck/cmd"
)
func registerSignalHandler() {
sigs := make(chan os.Signal, 1)
done := make(chan struct{})
cmd.SetStopCh(done)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
go func() {
sig := <-sigs
fmt.Println("received", sig, ", terminating...")
close(done)
}()
}
func main() {
registerSignalHandler()
cmd.Execute()
}
func init() {
rand.Seed(time.Now().UTC().UnixNano())
}
|