summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x[-rw-r--r--]vpn8
1 files changed, 8 insertions, 0 deletions
diff --git a/vpn b/vpn
index 36598f0..5a9fb10 100644..100755
--- a/vpn
+++ b/vpn
@@ -28,6 +28,12 @@
#!/usr/bin/bash
+set_routes()
+{
+ local devtun=tun0
+ echo "$devtun ready."
+}
+
ISROOT=`id -u`
if [ $ISROOT != 0 ]; then
@@ -35,3 +41,5 @@ if [ $ISROOT != 0 ]; then
exit 1
fi
+set_routes
+