123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- #!/bin/sh
- if [ $(id -u) -ne 0 ]; then
- echo "This script must be run as root"
- exit 1
- fi
- echo "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=''
- fi
- if [ -z "${install_cmd}" ]; then
- echo "OS unsupported for automatic dependency install"
- exit 1
- fi
- dependencies="wireguard"
- set -- $dependencies
- while [ -n "$1" ]; do
- echo $1
- if [ "${OS}" = "FreeBSD" ]; then
- is_installed=$(pkg check -d $1 | grep '100%')
- if [ "${is_installed}" = '100%' ]; 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 '100%')
- if [ "${is_installed}" = '100%' ]; 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
- shift
- done
- set -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=netclient
- echo "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
- ;;
- *)
- 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
- ;;
- esac
- echo "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 $url
- else
- echo "Downloading $dist latest"
- wget -nv -O netclient https://github.com/gravitl/netmaker/releases/download/latest/$dist
- fi
- chmod +x netclient
- EXTRA_ARGS=""
- if [ "${OS}" = "FreeBSD" ]; then
- EXTRA_ARGS = "--daemon=off"
- fi
- if [ -z "${NAME}" ]; then
- ./netclient join -t $KEY $EXTRA_ARGS
- else
- ./netclient join -t $KEY --name $NAME $EXTRA_ARGS
- fi
- rm -f netclient
- if [ "${OS}" = "FreeBSD" ]; then
- tee /usr/local/etc/rc.d/netclient <<'EOF' >/dev/null
- #!/bin/sh
- # PROVIDE: netclient
- # REQUIRE: LOGIN DAEMON NETWORKING SERVERS FILESYSTEM
- # BEFORE:
- # KEYWORD: shutdown
- . /etc/rc.subr
- name="netclient"
- rcvar=netclient_enable
- pidfile="/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 $name
- run_rc_command "$1"
- EOF
- /usr/local/etc/rc.d/netclient enable
- /usr/local/etc/rc.d/netclient start
- fi
|