- Initial release.

This commit is contained in:
2025-06-02 19:20:56 +02:00
commit f38fa40412
12 changed files with 2865 additions and 0 deletions

29
usr/local/sbin/cert_dump Executable file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
OPENVPN_DIR=/etc/openvpn
type=$1
host=$2
case "${type}"
in
"ca")
cat ${OPENVPN_DIR}/tls/certs/ca.crt
;;
"tc")
cat ${OPENVPN_DIR}/tls/private/tc.key
;;
"key")
cat ${OPENVPN_DIR}/tls/private/${host}.key
;;
"csr")
cat ${OPENVPN_DIR}/tls/certs/${host}.csr
;;
"crt")
cat ${OPENVPN_DIR}/tls/certs/${host}.crt
;;
esac