mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-10 14:34:16 +00:00
12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
|
|
|
|
/zerotier-one -d
|
|
|
|
while [ ! -d "/proc/sys/net/ipv6/conf/zt0" ]; do
|
|
sleep 0.25
|
|
done
|
|
|
|
exec node --harmony /agent.js >>agent.out 2>&1
|