mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 10:10:46 +08:00
6 lines
No EOL
244 B
Bash
6 lines
No EOL
244 B
Bash
# If running userspace wireguard in Docker, create missing tun device.
|
|
if [ ! -d /dev/net ]; then mkdir /dev/net; fi
|
|
if [ ! -e /dev/net/tun ]; then mknod /dev/net/tun c 10 200; fi
|
|
|
|
# Wait and then run netmaker.
|
|
/bin/sh -c "sleep 3; ./netmaker" |