1
0
mirror of https://github.com/flant/ovpn-admin.git synced 2024-12-12 08:44:07 +02:00
ovpn-admin/bootstrap.sh

19 lines
388 B
Bash
Raw Normal View History

2021-10-05 17:09:29 +02:00
#!/usr/bin/env bash
2020-05-15 01:13:33 +02:00
mkdir -p {easyrsa,ccd}
2020-05-15 01:13:33 +02:00
cd easyrsa
if [ ! -f easyrsa ]; then
2020-10-15 18:12:31 +02:00
curl -sL https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.8/EasyRSA-3.0.8.tgz | tar -xzv --strip-components=1 -C .
2020-05-15 01:13:33 +02:00
fi
if [ -d pki ]; then
exit 0
fi
./easyrsa init-pki
echo "ca" | ./easyrsa build-ca nopass
2020-05-15 01:13:33 +02:00
./easyrsa build-server-full server nopass
./easyrsa build-client-full client nopass