clair: catch both SIGINT and SIGTERM for graceful shutdown

This commit is contained in:
Quentin Machu 2016-03-07 16:38:10 -05:00
parent 09dda9bfd7
commit 19e9d1234e

View File

@ -20,6 +20,7 @@ import (
"math/rand"
"os"
"os/signal"
"syscall"
"time"
"github.com/coreos/clair/api"
@ -62,7 +63,7 @@ func Boot(config *config.Config) {
go updater.Run(config.Updater, db, st)
// Wait for interruption and shutdown gracefully.
waitForSignals(os.Interrupt)
waitForSignals(syscall.SIGINT, syscall.SIGTERM)
log.Info("Received interruption, gracefully stopping ...")
st.Stop()
}