ソースを参照

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.
CooperNatties 3 年 前
コミット
6dc6423f63
1 ファイル変更1 行追加1 行削除
  1. 1 1
      scripts/netclient-install.sh

+ 1 - 1
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