pivpn/scripts/pivpnDebug.sh

18 lines
525 B
Bash
Raw Normal View History

2016-04-19 18:01:55 +00:00
#!/usr/bin/env bash
# This scripts runs as root
echo ":: PiVPN Debug ::"
echo ":: Latest commit ::"
git --git-dir /etc/.pivpn/.git log -n 1
2016-12-08 14:53:23 +00:00
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
2016-12-08 14:53:23 +00:00
echo ":: /etc/openvpn/easy-rsa/pki/Default.txt ::"
cat /etc/openvpn/easy-rsa/pki/Default.txt
echo ":: done ::"