From 8cd1bcce64957189ca78ea7d8793a71b3e7f94fa Mon Sep 17 00:00:00 2001 From: "Arnaud G. GIBERT" Date: Sun, 7 Sep 2025 23:26:55 +0200 Subject: [PATCH] - Fix sysconfig files, - Fix openvpn-status. --- usr/local/sbin/openvpn-status | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/sbin/openvpn-status b/usr/local/sbin/openvpn-status index b00ebd0..33ddfe4 100755 --- a/usr/local/sbin/openvpn-status +++ b/usr/local/sbin/openvpn-status @@ -4,7 +4,7 @@ dev=$1 if [[ "$1" != "" ]] then - cat /etc/openvpn/openvpn-status-$dev.log + cat /var/lib/openvpn/$dev.status else - awk '{print FILENAME ": " $0}' /etc/openvpn/openvpn-status-*.log + awk '{print FILENAME ": " $0}' /var/lib/openvpn/*.status fi