mirror of
https://github.com/PurpleComputing/mdmscripts.git
synced 2026-02-08 00:12:12 +00:00
29 lines
800 B
Bash
29 lines
800 B
Bash
#!/bin/sh
|
|
#########################################################################
|
|
#
|
|
# ABOUT THIS PROGRAM
|
|
#
|
|
# NAME
|
|
# ZeroTier Install Script
|
|
#
|
|
# SYNOPSIS
|
|
# zerotier.sh
|
|
# FOR INITIAL DEPLOYMENT OR ENROLMENT USE ONLY
|
|
#########################################################################
|
|
#
|
|
# HISTORY
|
|
#
|
|
# Version: 1.1
|
|
#
|
|
# - 1.0 Martyn Watts, 25.06.2021 Initial Script Template Build
|
|
# - 1.1 Michael Tanner, 28.09.2021 Implement ZeroTier Install Script
|
|
#
|
|
#########################################################################
|
|
# Script to install ZeroTier and to join the organisations ZT Network.
|
|
#
|
|
curl -o /tmp/apps/ZT.pkg https://download.zerotier.com/dist/ZeroTier%20One.pkg
|
|
installer -pkg /tmp/apps/ZT.pkg -target /
|
|
rm -rf /tmp/apps/ZT.pkg
|
|
sleep 2s
|
|
/usr/local/bin/zerotier-cli join $@
|