1
0
mirror of https://github.com/Nyr/openvpn-install.git synced 2024-11-27 23:46:07 +03:00

Moving output directory of client config.

This commit is contained in:
IjorTengab 2021-03-07 02:43:42 +07:00
parent cb8730b621
commit 69e7f8fea9

View File

@ -80,6 +80,7 @@ TUN needs to be enabled before running this installer."
fi
new_client () {
mkdir -p /etc/openvpn/client
# Generates the custom client.ovpn
{
cat /etc/openvpn/server/client-common.txt
@ -95,7 +96,7 @@ new_client () {
echo "<tls-crypt>"
sed -ne '/BEGIN OpenVPN Static key/,$ p' /etc/openvpn/server/tc.key
echo "</tls-crypt>"
} > ~/"$client".ovpn
} > /etc/openvpn/client/"$client".ovpn
}
if [[ ! -e /etc/openvpn/server/server.conf ]]; then
@ -426,7 +427,7 @@ verb 3" > /etc/openvpn/server/client-common.txt
echo
echo "Finished!"
echo
echo "The client configuration is available in:" ~/"$client.ovpn"
echo "The client configuration is available in:" /etc/openvpn/client/"$client".ovpn
echo "New clients can be added by running this script again."
else
clear
@ -458,7 +459,7 @@ else
# Generates the custom client.ovpn
new_client
echo
echo "$client added. Configuration available in:" ~/"$client.ovpn"
echo "$client added. Configuration available in:" /etc/openvpn/client/"$client".ovpn
exit
;;
2)