123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #!/bin/sh
- grepzt() {
- [ -f /var/lib/zerotier-one/zerotier-one.pid -a -n "$(cat /var/lib/zerotier-one/zerotier-one.pid)" -a -d "/proc/$(cat /var/lib/zerotier-one/zerotier-one.pid)" ]
- return $?
- }
- mkztfile() {
- file=$1
- mode=$2
- content=$3
- mkdir -p /var/lib/zerotier-one
- echo "$content" > "/var/lib/zerotier-one/$file"
- chmod "$mode" "/var/lib/zerotier-one/$file"
- }
- if [ "x$ZEROTIER_API_SECRET" != "x" ]
- then
- mkztfile authtoken.secret 0600 "$ZEROTIER_API_SECRET"
- fi
- if [ "x$ZEROTIER_IDENTITY_PUBLIC" != "x" ]
- then
- mkztfile identity.public 0644 "$ZEROTIER_IDENTITY_PUBLIC"
- fi
- if [ "x$ZEROTIER_IDENTITY_SECRET" != "x" ]
- then
- mkztfile identity.secret 0600 "$ZEROTIER_IDENTITY_SECRET"
- fi
- mkztfile zerotier-one.port 0600 "9993"
- killzerotier() {
- echo "Killing zerotier"
- kill $(cat /var/lib/zerotier-one/zerotier-one.pid)
- exit 0
- }
- trap killzerotier INT TERM
- echo "Configuring networks to join"
- mkdir -p /var/lib/zerotier-one/networks.d
- echo "joining networks: $@"
- for i in "$@"
- do
- echo "Configuring join for $i"
- touch "/var/lib/zerotier-one/networks.d/${i}.conf"
- done
- echo "starting zerotier"
- nohup /usr/sbin/zerotier-one &
- while ! grepzt
- do
- echo "zerotier hasn't started, waiting a second"
- if [ -f nohup.out ]
- then
- tail -n 10 nohup.out
- fi
- sleep 1
- done
- echo "Writing healthcheck for networks: $@"
- cat >/healthcheck.sh <<EOF
- #!/bin/bash
- for i in $@
- do
- [ "\$(zerotier-cli get \$i status)" = "OK" ] || exit 1
- done
- EOF
- chmod +x /healthcheck.sh
- echo "Sleeping infinitely"
- while true
- do
- sleep 1
- done
|