diff options
author | Stanislas Lange <angristan@pm.me> | 2020-03-21 15:44:32 +0100 |
---|---|---|
committer | Stanislas Lange <angristan@pm.me> | 2020-03-21 15:44:32 +0100 |
commit | f3fd5346c021e93fc1ec863ec8c5f3061bb18419 (patch) | |
tree | 495c02de47b7bbe3ce0f6393c024706acd2b543a /wireguard-install.sh | |
parent | bf3cccb8fd0bb7ac49b3c9df897be175ee3e282f (diff) |
Fix shellcheck
Diffstat (limited to 'wireguard-install.sh')
-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 5663a22..aa8283b 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -166,7 +166,7 @@ echo -e "\nHere is your client config file as a QR Code:" qrencode -t ansiutf8 -l L < "$HOME/$SERVER_WG_NIC-client.conf" # Check if WireGuard is running -systemctl is-active --quiet wg-quick@$SERVER_WG_NIC +systemctl is-active --quiet "wg-quick@$SERVER_WG_NIC" WG_RUNNING=$? # Warn user about kernel version mismatch with headers |