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.
17 lines
362 B
17 lines
362 B
|
11 years ago
|
#!/bin/bash
|
||
|
|
|
||
|
|
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
|
||
|
|
|
||
|
11 years ago
|
/zerotier-one -d >>zerotier-one.out 2>&1
|
||
|
11 years ago
|
|
||
|
11 years ago
|
# Wait for ZeroTier to start and join the network
|
||
|
11 years ago
|
while [ ! -d "/proc/sys/net/ipv6/conf/zt0" ]; do
|
||
|
|
sleep 0.25
|
||
|
|
done
|
||
|
|
|
||
|
11 years ago
|
# Wait just a bit longer for stuff to settle
|
||
|
|
sleep 5
|
||
|
11 years ago
|
|
||
|
11 years ago
|
exec node --harmony /agent.js >>agent.out 2>&1
|
||
|
11 years ago
|
#exec node --harmony /agent.js
|