mirror of
https://github.com/didyouexpectthat/zerotierone.git
synced 2024-11-09 09:40:10 -08:00
17 lines
362 B
Bash
Executable File
17 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
|
|
|
|
/zerotier-one -d >>zerotier-one.out 2>&1
|
|
|
|
# Wait for ZeroTier to start and join the network
|
|
while [ ! -d "/proc/sys/net/ipv6/conf/zt0" ]; do
|
|
sleep 0.25
|
|
done
|
|
|
|
# Wait just a bit longer for stuff to settle
|
|
sleep 5
|
|
|
|
exec node --harmony /agent.js >>agent.out 2>&1
|
|
#exec node --harmony /agent.js
|