mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-27 01:13:43 +02:00
14 lines
267 B
Bash
Executable file
14 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
|