Exit signal handling polish, login page info added

This commit is contained in:
MrFry 2020-04-10 15:24:53 +02:00
parent 4f030ad27c
commit 88d487568c
6 changed files with 21 additions and 69 deletions

View file

@ -64,10 +64,7 @@ try {
// Setting up exits
// process.on('exit', () => exit('exit'))
// process.on('exit', () => exit('exit'))
process.on('SIGINT', () => exit('SIGINT'))
process.on('SIGINT', () => exit('SIGINT'))
process.on('SIGTERM', () => exit('SIGTERM'))
process.on('SIGTERM', () => exit('SIGTERM'))
function exit (reason) {