| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 | #!/bin/shif [ $(id -u) -ne 0 ]; then   echo "This script must be run as root"   exit 1fiecho "checking dependencies..."OS=$(uname)if [ -f /etc/debian_version ]; then	install_cmd='apt-get install -y'elif [ -f /etc/alpine-release ]; then	install_cmd='apk --update add'elif [ -f /etc/centos-release ]; then	install_cmd='yum install -y'elif [ -f /etc/fedora-release ]; then	install_cmd='dnf install -y'elif [ "${OS}" = "FreeBSD" ]; then	install_cmd='pkg install -y'else	install_cmd=''fiif [ -z "${install_cmd}" ]; then        echo "OS unsupported for automatic dependency install"	exit 1fidependencies="wireguard"set -- $dependencieswhile [ -n "$1" ]; do    echo $1	if [ "${OS}" = "FreeBSD" ]; then		is_installed=$(pkg check -d $1 | grep "Checking" | grep "done")		if [ "$is_installed" != "" ]; then			echo "    " $1 is installed		else			echo "    " $1 is not installed. Attempting install.			${install_cmd} $1			sleep 5			is_installed=$(pkg check -d $1 | grep "Checking" | grep "done")			if [ "$is_installed" != "" ]; then				echo "    " $1 is installed			elif [ -x "$(command -v $1)" ]; then				echo "    " $1 is installed			else				echo "    " FAILED TO INSTALL $1				echo "    " This may break functionality.			fi		fi		else		is_installed=$(dpkg-query -W --showformat='${Status}\n' $1 | grep "install ok installed")		if [ "${is_installed}" = "install ok installed" ]; then			echo "    " $1 is installed		else			echo "    " $1 is not installed. Attempting install.			${install_cmd} $1			sleep 5			is_installed=$(dpkg-query -W --showformat='${Status}\n' $1 | grep "install ok installed")				if [ "${is_installed}" = "install ok installed" ]; then				echo "    " $1 is installed			elif [ -x "$(command -v $1)" ]; then				echo "    " $1 is installed			else				echo "    " FAILED TO INSTALL $1				echo "    " This may break functionality.			fi		fi	fi	shiftdoneset -e[ -z "$KEY" ] && KEY=nokey;[ -z "$VERSION" ] && echo "no \$VERSION provided, fallback to latest" && VERSION=latest;[ "latest" != "$VERSION" ] && [ "v" != `echo $VERSION | cut -c1` ] && VERSION="v$VERSION"[ -z "$NAME" ] && NAME="";dist=netclientecho "OS Version = $(uname)"echo "Netclient Version = $VERSION"case $(uname | tr '[:upper:]' '[:lower:]') in	linux*)		if [ -z "$CPU_ARCH" ]; then			CPU_ARCH=$(uname -m)		fi		case $CPU_ARCH in			amd64)				dist=netclient			;;			x86_64)				dist=netclient			;;                        x86_32)                                dist=netclient-32                        ;; 			arm64)				dist=netclient-arm64			;;			aarch64)                                dist=netclient-arm64			;;			armv7l)                                dist=netclient-armv7			;;			arm*)				dist=netclient-$CPU_ARCH			;;                        mipsle)                                dist=netclient-mipsle			;;			*)				fatal "$CPU_ARCH : cpu architecture not supported"    		esac	;;	darwin)        	dist=netclient-darwin	;;	freebsd*)		if [ -z "$CPU_ARCH" ]; then			CPU_ARCH=$(uname -m)		fi		case $CPU_ARCH in			amd64)				dist=netclient-freebsd			;;			x86_64)				dist=netclient-freebsd			;;                        x86_32)                                dist=netclient-freebsd-32                        ;; 			arm64)				dist=netclient-freebsd-arm64			;;			aarch64)                                dist=netclient-freebsd-arm64			;;			armv7l)                                dist=netclient-freebsd-armv7			;;			arm*)				dist=netclient-freebsd-$CPU_ARCH            		;;			*)				fatal "$CPU_ARCH : cpu architecture not supported"    		esac	;;esacecho "Binary = $dist"url="https://github.com/gravitl/netmaker/releases/download/$VERSION/$dist"if curl --output /dev/null --silent --head --fail "$url"; then	echo "Downloading $dist $VERSION"	wget -nv -O netclient $urlelse	echo "Downloading $dist latest"	wget -nv -O netclient https://github.com/gravitl/netmaker/releases/download/latest/$distfichmod +x netclientEXTRA_ARGS=""if [ "${OS}" = "FreeBSD" ]; then	EXTRA_ARGS="--daemon=off"fiif [ -z "${NAME}" ]; then  ./netclient join -t $KEY $EXTRA_ARGSelse  ./netclient join -t $KEY --name $NAME $EXTRA_ARGSfiif [ "${OS}" = "FreeBSD" ]; then	mv ./netclient /etc/netclient/netclient	cat << 'END_OF_FILE' > ./netclient.service.tmp#!/bin/sh# PROVIDE: netclient# REQUIRE: LOGIN DAEMON NETWORKING SERVERS FILESYSTEM# BEFORE:  # KEYWORD: shutdown. /etc/rc.subrname="netclient"rcvar=netclient_enablepidfile="/var/run/${name}.pid"command="/usr/sbin/daemon"command_args="-c -f -P ${pidfile} -R 10 -t "Netclient" -u root -o /etc/netclient/netclient.log /etc/netclient/netclient checkin -n all"load_rc_config $namerun_rc_command "$1"END_OF_FILE	sudo mv ./netclient.service.tmp /usr/local/etc/rc.d/netclient	sudo chmod +x /usr/local/etc/rc.d/netclient	sudo /usr/local/etc/rc.d/netclient enable	sudo /usr/local/etc/rc.d/netclient startelse	rm -f netclientfi
 |