ovpn-admin/bootstrap.sh

19 lines
388 B
Bash
Raw Normal View History

2021-10-05 11:09:29 -04:00
#!/usr/bin/env bash
2020-05-14 19:13:33 -04:00
mkdir -p {easyrsa,ccd}
2020-05-14 19:13:33 -04:00
cd easyrsa
if [ ! -f easyrsa ]; then
2020-10-15 12:12:31 -04: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-14 19:13:33 -04:00
fi
if [ -d pki ]; then
exit 0
fi
./easyrsa init-pki
echo "ca" | ./easyrsa build-ca nopass
2020-05-14 19:13:33 -04:00
./easyrsa build-server-full server nopass
./easyrsa build-client-full client nopass