mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-29 01:08:53 +00:00
11 lines
212 B
Bash
11 lines
212 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
|
||
|
|
||
|
if [ ! -e /dev/net/tun ]; then
|
||
|
echo 'FATAL: cannot start ZeroTier One in container: /dev/net/tun not present.'
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
exec /zerotier-one
|