mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-20 21:43:08 +00:00
15 lines
267 B
Bash
Executable File
15 lines
267 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
|
|
|
|
while [ ! -d "/proc/sys/net/ipv6/conf/zt0" ]; do
|
|
sleep 0.25
|
|
done
|
|
|
|
sleep 2
|
|
|
|
exec node --harmony /agent.js >>agent.out 2>&1
|
|
#exec node --harmony /agent.js
|