From e30c8a38e73fe3f6821a8c6a3cb5258c83ca2d24 Mon Sep 17 00:00:00 2001 From: Nyr Date: Tue, 11 Mar 2025 19:47:39 +0100 Subject: [PATCH] Use a better client configuration file path --- openvpn-install.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 1502bb0..0b8e93d 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -80,6 +80,9 @@ TUN needs to be enabled before running this installer." exit fi +# Store the absolute path of the directory where the script is located +script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + new_client () { # Generates the custom client.ovpn { @@ -96,7 +99,7 @@ new_client () { echo "" sed -ne '/BEGIN OpenVPN Static key/,$ p' /etc/openvpn/server/tc.key echo "" - } > ~/"$client".ovpn + } > "$script_dir"/"$client".ovpn } if [[ ! -e /etc/openvpn/server/server.conf ]]; then @@ -456,7 +459,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:" "$script_dir"/"$client.ovpn" echo "New clients can be added by running this script again." else clear @@ -488,7 +491,7 @@ else # Generates the custom client.ovpn new_client echo - echo "$client added. Configuration available in:" ~/"$client.ovpn" + echo "$client added. Configuration available in:" "$script_dir"/"$client.ovpn" exit ;; 2)