fixup: lint errors

This commit is contained in:
Philip H 2024-02-21 08:59:37 +00:00
parent 6604e44ea3
commit a6d092dd87
2 changed files with 6 additions and 2 deletions

View File

@ -322,4 +322,5 @@ Endpoint = ${WG_HOST}:${WG_PORT}`;
async Shutdown() {
await Util.exec('wg-quick down wg0').catch(() => { });
}
};

View File

@ -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.');
});
});