From a6d092dd87dd7d880d73cdacae27f61c436e2deb Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Wed, 21 Feb 2024 08:59:37 +0000 Subject: [PATCH] fixup: lint errors --- src/lib/WireGuard.js | 1 + src/server.js | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/lib/WireGuard.js b/src/lib/WireGuard.js index 5d170286..8377f6f6 100644 --- a/src/lib/WireGuard.js +++ b/src/lib/WireGuard.js @@ -322,4 +322,5 @@ Endpoint = ${WG_HOST}:${WG_PORT}`; async Shutdown() { await Util.exec('wg-quick down wg0').catch(() => { }); } + }; diff --git a/src/server.js b/src/server.js index 1b1164e9..1ad06b34 100644 --- a/src/server.js +++ b/src/server.js @@ -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.'); -}); \ No newline at end of file +});