mirror of
https://github.com/didyouexpectthat/zerotierone.git
synced 2025-03-12 04:35:51 -07:00
11 lines
203 B
Bash
Executable File
11 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 "$@"
|