You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
817 B
23 lines
817 B
#!/bin/bash |
|
|
|
echo '*** ZeroTier-Kubernetes self-auth test script' |
|
chown -R daemon /var/lib/zerotier-one |
|
chgrp -R daemon /var/lib/zerotier-one |
|
su daemon -s /bin/bash -c '/zerotier-one -d -U -p9993 >>/tmp/zerotier-one.out 2>&1' |
|
dev="" |
|
nwconf=$(ls *.conf) |
|
nwid="${nwconf%.*}" |
|
|
|
sleep 10 |
|
dev=$(cat /var/lib/zerotier-one/identity.public| cut -d ':' -f 1) |
|
|
|
echo '*** Joining' |
|
./zerotier-cli join "$nwid".conf |
|
# Fill out local service auth token |
|
AUTHTOKEN=$(cat /var/lib/zerotier-one/authtoken.secret) |
|
sed "s|\local_service_auth_token_replaced_automatically|${AUTHTOKEN}|" .zerotierCliSettings > /root/.zerotierCliSettings |
|
echo '*** Authorizing' |
|
./zerotier-cli net-auth @my.zerotier.com "$nwid" "$dev" |
|
echo '*** Cleaning up' # Remove controller auth token |
|
rm -rf .zerotierCliSettings /root/.zerotierCliSettings |
|
node server.js |