mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-12 08:06:35 -07:00
13 lines
271 B
Desktop File
Executable file
13 lines
271 B
Desktop File
Executable file
#!/bin/bash
|
|
|
|
export PATH=/bin:/usr/bin:/usr/local/bin
|
|
|
|
# We will start in ZT_HOME
|
|
|
|
if [ ! -d ./services.d/netconf-service ]; then
|
|
echo 'cannot find netconf-service subfolder to launch subprocess' >&2
|
|
exit 1
|
|
fi
|
|
|
|
cd services.d/netconf-service
|
|
exec node netconf-master.js
|