mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-05-02 03:43:43 +02:00
10 lines
203 B
Bash
Executable file
10 lines
203 B
Bash
Executable file
#!/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 "$@"
|