From 04be0b717910c21d2d6b8a134bfa1d86da53e4c7 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Sun, 7 Sep 2025 15:28:39 -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 2b1546a..a4c4b96 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 /etc/openvpn/openvpn-status`; + const command = `cat /var/log/openvpn/openvpn-status`; conn.exec( command, ( err, stream ) => { if (err) { conn.end(); -- 2.43.0