From 97551d65c162dc44e4526a139c89d7f07ddc4c05 Mon Sep 17 00:00:00 2001 From: randomshell Date: Wed, 1 Jul 2020 18:25:55 +0000 Subject: [PATCH] Add isRoot() --- wireguard-install.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 40c08ce..cc51058 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -1,5 +1,12 @@ #!/bin/bash +function isRoot() { + if [ "$EUID" -ne 0 ]; then + echo "You need to run this script as root" + exit 1 + fi +} + function addClient() { # Load params source /etc/wireguard/params @@ -62,11 +69,6 @@ AllowedIPs = $CLIENT_WG_IPV4/32,$CLIENT_WG_IPV6/128" >>"/etc/wireguard/$SERVER_W echo "It is also available in $HOME/$SERVER_WG_NIC-client-$CLIENT_NAME.conf" } -if [ "$EUID" -ne 0 ]; then - echo "You need to run this script as root" - exit 1 -fi - if [ "$(systemd-detect-virt)" == "openvz" ]; then echo "OpenVZ is not supported" exit