openvpn/entrypoint.sh

9 lines
106 B
Bash
Raw Permalink Normal View History

2023-05-18 16:36:27 +02:00
#!/bin/bash
mkdir -p /dev/net
if [ ! -c /dev/net/tun ]; then
mknod /dev/net/tun c 10 200
fi
exec $@