From c7dceb0cc54e9e9267f20c1a9e42ea7ce76875bd Mon Sep 17 00:00:00 2001 From: Stanislas Lange Date: Fri, 31 Jul 2020 14:50:31 +0200 Subject: [PATCH] Update reboot warning Remove OS condition. It also happen on Debian now, because we update the kernel from the backports, so we need to reboot --- wireguard-install.sh | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 5319d79..707b4e3 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -203,17 +203,11 @@ net.ipv6.conf.all.forwarding = 1" >/etc/sysctl.d/wg.conf systemctl is-active --quiet "wg-quick@${SERVER_WG_NIC}" WG_RUNNING=$? - # Warn user about kernel version mismatch with headers - if [[ "${OS}" =~ (fedora|centos) ]] && [[ "${WG_RUNNING}" -ne 0 ]]; then + # WireGuard might not work if we updated the kernel. Tell the user to reboot + if [[ "${WG_RUNNING}" -ne 0 ]]; then echo -e "\nWARNING: WireGuard does not seem to be running." - echo "Due to kernel mismatch issues on ${OS}, WireGuard might not work if your system is out of date." 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 run:' - if [[ "${OS}" == 'fedora' ]]; then - echo "dnf update -y && reboot" - elif [[ "${OS}" == 'centos' ]]; then - echo "yum update -y && reboot" - fi + echo 'If you get something like "Cannot find device wg0", please reboot!' fi newClient