1
0
Fork 0
mirror of synced 2024-05-24 11:10:32 -04:00
ovpn-admin/bootstrap.sh
2021-10-05 18:09:29 +03:00

19 lines
388 B
Bash
Executable file

#!/usr/bin/env bash
mkdir -p {easyrsa,ccd}
cd easyrsa
if [ ! -f easyrsa ]; then
curl -sL https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.8/EasyRSA-3.0.8.tgz | tar -xzv --strip-components=1 -C .
fi
if [ -d pki ]; then
exit 0
fi
./easyrsa init-pki
echo "ca" | ./easyrsa build-ca nopass
./easyrsa build-server-full server nopass
./easyrsa build-client-full client nopass