1
0
Fork 0
mirror of https://github.com/Nyr/openvpn-install.git synced 2025-04-05 05:33:30 +03:00

Simple script to add users passed as arguments

This commit is contained in:
Bonhomme 2020-07-09 11:49:58 +02:00
parent 13f8b2e00c
commit ff74940415

34
add-usr.sh Normal file
View file

@ -0,0 +1,34 @@
#!/bin/bash
new_client () {
# Generates the custom client.ovpn
{
NEW_CLIENT=$1
cat /etc/openvpn/server/client-common.txt
echo "<ca>"
cat /etc/openvpn/server/easy-rsa/pki/ca.crt
echo "</ca>"
echo "<cert>"
sed -ne '/BEGIN CERTIFICATE/,$ p' /etc/openvpn/server/easy-rsa/pki/issued/$NEW_CLIENT.crt
echo "</cert>"
echo "<key>"
cat /etc/openvpn/server/easy-rsa/pki/private/$NEW_CLIENT.key
echo "</key>"
echo "<tls-crypt>"
sed -ne '/BEGIN OpenVPN Static key/,$ p' /etc/openvpn/server/tc.key
echo "</tls-crypt>"
} > /etc/openvpn/client/$NEW_CLIENT.ovpn
}
for NEW_USER in "$@"
do
echo "New client certification generation for: " $NEW_USER
bash /etc/openvpn/server/easy-rsa/easyrsa build-client-full $NEW_USER nopass
new_client $NEW_USER
done