From fb240ebdf78974d957cec9afc3503048f4b153f5 Mon Sep 17 00:00:00 2001 From: randomshell Date: Thu, 2 Jul 2020 12:28:15 +0000 Subject: [PATCH] Add installQuestions() Needed for a later headless installation code --- wireguard-install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index b21c464..2194d2b 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -52,7 +52,7 @@ function initialCheck() { checkOS } -function installWireGuard() { +function installQuestions() { echo "Welcome to the WireGuard installer!" echo "The git repository is available at: https://github.com/angristan/wireguard-install" echo "" @@ -92,6 +92,11 @@ function installWireGuard() { 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 +} + +function installWireGuard() { + # Run setup questions first + installQuestions # Install WireGuard tools and module if [[ $OS == 'ubuntu' ]]; then