From 9b937d0e6ba0befb755e19b6173ddb7333b3f008 Mon Sep 17 00:00:00 2001 From: Kaladin Light <0.kaladin@gmail.com> Date: Thu, 8 Dec 2016 09:53:23 -0500 Subject: [PATCH] Fix pivpnDebug after easy-rsa3 changes --- scripts/pivpnDebug.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/pivpnDebug.sh b/scripts/pivpnDebug.sh index 66cadd8..848100f 100644 --- a/scripts/pivpnDebug.sh +++ b/scripts/pivpnDebug.sh @@ -4,14 +4,14 @@ echo ":: PiVPN Debug ::" echo ":: Latest commit ::" git --git-dir /etc/.pivpn/.git log -n 1 -echo ":: list of files in /etc/openvpn/easy-rsa/keys ::" -ls /etc/openvpn/easy-rsa/keys/ +echo ":: Recursive list of files in /etc/openvpn/easy-rsa/pki ::" +ls -LR /etc/openvpn/easy-rsa/pki/ -Ireqs -Icerts_by_serial echo ":: /etc/pivpn/* ::" for filename in /etc/pivpn/*; do echo ":: START $filename ::" cat "$filename" echo ":: END $filename ::" done -echo ":: /etc/openvpn/easy-rsa/keys/Default.txt ::" -cat /etc/openvpn/easy-rsa/keys/Default.txt +echo ":: /etc/openvpn/easy-rsa/pki/Default.txt ::" +cat /etc/openvpn/easy-rsa/pki/Default.txt echo ":: done ::"