From 845e6ce4d6e1b59cc61e42a8016ab41f72e16aaa Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Sun, 7 Sep 2025 15:29:28 -0500 Subject: [PATCH] Testing vpn paths. --- src/controllers/vpn.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/vpn.controller.js b/src/controllers/vpn.controller.js index a4c4b96..b8dd6fc 100644 --- a/src/controllers/vpn.controller.js +++ b/src/controllers/vpn.controller.js @@ -75,7 +75,7 @@ module.exports = { }, getClients:async ( req, res, next ) => { const conn = new Client(); conn.on( 'ready', () => { - const command = `cat /var/log/openvpn/openvpn-status`; + const command = `cat /var/log/openvpn/openvpn-status.log`; conn.exec( command, ( err, stream ) => { if (err) { conn.end(); -- 2.43.0