diff options
author | Stanislas <stanislas.lange@pm.me> | 2020-08-04 14:09:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 14:09:22 +0200 |
commit | 2669e5af0cf25f7babf7320581874e1f93c35547 (patch) | |
tree | 701956b8b899fb07773c9e04b6ec038966d28b9e | |
parent | 2848ceefa5d31b1fc99e854025594f83c917460d (diff) | |
parent | d7523dc30e060f895100a866e8f4d8f634f1dd0f (diff) |
Merge pull request #112 from randomshell/reboot
Fix reboot message
-rw-r--r-- | wireguard-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wireguard-install.sh b/wireguard-install.sh index ea4f7a5..59f7946 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -200,7 +200,7 @@ net.ipv6.conf.all.forwarding = 1" >/etc/sysctl.d/wg.conf if [[ ${WG_RUNNING} -ne 0 ]]; then echo -e "\nWARNING: WireGuard does not seem to be running." echo "You can check if WireGuard is running with: systemctl status wg-quick@${SERVER_WG_NIC}" - echo 'If you get something like "Cannot find device wg0", please reboot!' + echo "If you get something like \"Cannot find device ${SERVER_WG_NIC}\", please reboot!" fi newClient |