diff options
author | Stanislas Lange <angristan@pm.me> | 2020-04-03 18:33:36 +0200 |
---|---|---|
committer | Stanislas Lange <angristan@pm.me> | 2020-04-03 18:33:36 +0200 |
commit | 7c2e299a028f60ea8fbc24d3386fa21b71882371 (patch) | |
tree | 9c9ae9ace399555e51e6e17d18ef89fb520a6ba0 | |
parent | 3b342e531c06160c54d354a55b8fca39fa6c855c (diff) |
Add missing colons to setup questions
Signed-off-by: Stanislas Lange <angristan@pm.me>
-rw-r--r-- | wireguard-install.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/wireguard-install.sh b/wireguard-install.sh index 4221da6..3fef101 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -47,20 +47,20 @@ SERVER_WG_NIC="wg0" read -rp "WireGuard interface name: " -e -i "$SERVER_WG_NIC" SERVER_WG_NIC SERVER_WG_IPV4="10.66.66.1" -read -rp "Server's WireGuard IPv4 " -e -i "$SERVER_WG_IPV4" SERVER_WG_IPV4 +read -rp "Server's WireGuard IPv4: " -e -i "$SERVER_WG_IPV4" SERVER_WG_IPV4 SERVER_WG_IPV6="fd42:42:42::1" -read -rp "Server's WireGuard IPv6 " -e -i "$SERVER_WG_IPV6" SERVER_WG_IPV6 +read -rp "Server's WireGuard IPv6: " -e -i "$SERVER_WG_IPV6" SERVER_WG_IPV6 # Generate random number within private ports range SERVER_PORT=$(shuf -i49152-65535 -n1) -read -rp "Server's WireGuard port " -e -i "$SERVER_PORT" SERVER_PORT +read -rp "Server's WireGuard port: " -e -i "$SERVER_PORT" SERVER_PORT CLIENT_WG_IPV4="10.66.66.2" -read -rp "Client's WireGuard IPv4 " -e -i "$CLIENT_WG_IPV4" CLIENT_WG_IPV4 +read -rp "Client's WireGuard IPv4: " -e -i "$CLIENT_WG_IPV4" CLIENT_WG_IPV4 CLIENT_WG_IPV6="fd42:42:42::2" -read -rp "Client's WireGuard IPv6 " -e -i "$CLIENT_WG_IPV6" CLIENT_WG_IPV6 +read -rp "Client's WireGuard IPv6: " -e -i "$CLIENT_WG_IPV6" CLIENT_WG_IPV6 # Adguard DNS by default CLIENT_DNS_1="176.103.130.130" |