From 6a40208a80c0c8a695e75e1b51de07572b4e8e67 Mon Sep 17 00:00:00 2001 From: randomshell Date: Thu, 2 Jul 2020 12:31:15 +0000 Subject: [PATCH] Add confirmation text before install --- wireguard-install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wireguard-install.sh b/wireguard-install.sh index 2194d2b..7ec9dd5 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -92,6 +92,11 @@ function installQuestions() { until [[ $SERVER_PORT =~ ^[0-9]+$ ]] && [ "$SERVER_PORT" -ge 1 ] && [ "$SERVER_PORT" -le 65535 ]; do read -rp "Server's WireGuard port [1-65535]: " -e -i "$RANDOM_PORT" SERVER_PORT done + + echo "" + echo "Okay, that was all I needed. We are ready to setup your WireGuard server now." + echo "You will be able to generate a client at the end of the installation." + read -n1 -r -p "Press any key to continue..." } function installWireGuard() {