mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 12:30:11 +02:00
12 lines
228 B
Bash
12 lines
228 B
Bash
#!/bin/sh
|
|
|
|
if ( [ ! -c /dev/net/tun ] ); then
|
|
if ( [ ! -d /dev/net ] ); then
|
|
mkdir -m 755 /dev/net
|
|
fi
|
|
mknod /dev/net/tun c 10 200
|
|
fi
|
|
if ( !(lsmod | grep -q "^tun\s") ); then
|
|
insmod /lib/modules/tun.ko
|
|
fi
|