Skip to content
This repository was archived by the owner on Apr 18, 2020. It is now read-only.

Commit 3f8945b

Browse files
committed
fix tun device error for pritunl
1 parent a4c67a0 commit 3f8945b

File tree

1 file changed

+5
-0
lines changed
  • pritunl/etc/init

1 file changed

+5
-0
lines changed

pritunl/etc/init/tun

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
mkdir -p /dev/net
3+
if [ ! -c /dev/net/tun ]; then
4+
mknod /dev/net/tun c 10 200
5+
fi

0 commit comments

Comments
 (0)