From 6dc6423f63067f90c1291ff758af2debefbc5d6a Mon Sep 17 00:00:00 2001 From: CooperNatties <22322602+MikePadge@users.noreply.github.com> Date: Sat, 13 Nov 2021 11:18:26 -0600 Subject: [PATCH] Update netclient-install.sh Remove sudo command from line 108 The script already checks to make sure it's being run as root, so sudo is superfluous here, and causes minimal Debian installs to fail since sudo is not included in base Debian. --- scripts/netclient-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/netclient-install.sh b/scripts/netclient-install.sh index 571f88fe..5edff61f 100755 --- a/scripts/netclient-install.sh +++ b/scripts/netclient-install.sh @@ -105,5 +105,5 @@ else wget -nv -O netclient https://github.com/gravitl/netmaker/releases/download/latest/$dist fi chmod +x netclient -sudo ./netclient join -t $KEY +./netclient join -t $KEY rm -f netclient