mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-11 06:54:06 +00:00
14 lines
259 B
Bash
Executable File
14 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
|
|
|
|
cd `dirname $0`
|
|
if [ ! -d cluster-geo -o ! -f cluster-geo/index.js ]; then
|
|
echo 'Cannot find ./cluster-geo containing NodeJS script files.'
|
|
exit 1
|
|
fi
|
|
|
|
cd cluster-geo
|
|
|
|
exec node index.js
|