mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
Add installQuestions()
Needed for a later headless installation code
This commit is contained in:
parent
942e215f76
commit
fb240ebdf7
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue