|
|
@ -14,13 +14,16 @@ WireGuard.getConfig() |
|
|
|
}); |
|
|
|
|
|
|
|
// Handle terminate signal
|
|
|
|
process.on('SIGTERM', async() => { |
|
|
|
process.on('SIGTERM', async () => { |
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
console.log('SIGTERM signal received.'); |
|
|
|
await WireGuard.Shutdown(); |
|
|
|
// eslint-disable-next-line no-process-exit
|
|
|
|
process.exit(0); |
|
|
|
}); |
|
|
|
|
|
|
|
// Handle interupt signal
|
|
|
|
process.on('SIGINT', () => { |
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
console.log('SIGINT signal received.'); |
|
|
|
}); |