summaryrefslogtreecommitdiff
path: root/ext/tap-mac/tuntap/startup_item
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tap-mac/tuntap/startup_item')
-rw-r--r--ext/tap-mac/tuntap/startup_item/tap/Resources/English.lproj/Localizable.strings11
-rw-r--r--ext/tap-mac/tuntap/startup_item/tap/StartupParameters.plist6
-rwxr-xr-xext/tap-mac/tuntap/startup_item/tap/tap33
-rw-r--r--ext/tap-mac/tuntap/startup_item/tun/Resources/English.lproj/Localizable.strings11
-rw-r--r--ext/tap-mac/tuntap/startup_item/tun/StartupParameters.plist6
-rwxr-xr-xext/tap-mac/tuntap/startup_item/tun/tun33
6 files changed, 0 insertions, 100 deletions
diff --git a/ext/tap-mac/tuntap/startup_item/tap/Resources/English.lproj/Localizable.strings b/ext/tap-mac/tuntap/startup_item/tap/Resources/English.lproj/Localizable.strings
deleted file mode 100644
index 4d3b29ca..00000000
--- a/ext/tap-mac/tuntap/startup_item/tap/Resources/English.lproj/Localizable.strings
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
-<plist version="0.9">
-<dict>
- <key>ethertap device kernel extension</key>
- <string>ethertap kernel extension</string>
- <key>Initializing tap devices</key>
- <string>Initializing tap devices</string>
-</dict>
-</plist>
-
diff --git a/ext/tap-mac/tuntap/startup_item/tap/StartupParameters.plist b/ext/tap-mac/tuntap/startup_item/tap/StartupParameters.plist
deleted file mode 100644
index fe9cf001..00000000
--- a/ext/tap-mac/tuntap/startup_item/tap/StartupParameters.plist
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- Description = "ethertap device kernel extension";
- Provides = ("ethertap");
- Requires = ("Network Configuration");
- OrderPreference = "None";
-}
diff --git a/ext/tap-mac/tuntap/startup_item/tap/tap b/ext/tap-mac/tuntap/startup_item/tap/tap
deleted file mode 100755
index d7600991..00000000
--- a/ext/tap-mac/tuntap/startup_item/tap/tap
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-##
-# load the tap kext
-##
-
-. /etc/rc.common
-
-StartService ()
-{
- ConsoleMessage "Initializing tap devices"
-
- if [ -d /Library/Extensions/tap.kext ]; then
- kextload /Library/Extensions/tap.kext
- fi
-}
-
-StopService ()
-{
- if [ -d /Library/Extensions/tap.kext ]; then
- kextunload /Library/Extensions/tap.kext
- fi
-}
-
-RestartService ()
-{
- if [ -d /Library/Extensions/tap.kext ]; then
- kextunload /Library/Extensions/tap.kext
- kextload /Library/Extensions/tap.kext
- fi
-}
-
-RunService "$1"
diff --git a/ext/tap-mac/tuntap/startup_item/tun/Resources/English.lproj/Localizable.strings b/ext/tap-mac/tuntap/startup_item/tun/Resources/English.lproj/Localizable.strings
deleted file mode 100644
index 054790e7..00000000
--- a/ext/tap-mac/tuntap/startup_item/tun/Resources/English.lproj/Localizable.strings
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
-<plist version="0.9">
-<dict>
- <key>ip tunnel device kernel extension</key>
- <string>ip tunnel kernel extension</string>
- <key>Initializing tun devices</key>
- <string>Initializing tun devices</string>
-</dict>
-</plist>
-
diff --git a/ext/tap-mac/tuntap/startup_item/tun/StartupParameters.plist b/ext/tap-mac/tuntap/startup_item/tun/StartupParameters.plist
deleted file mode 100644
index 71a92626..00000000
--- a/ext/tap-mac/tuntap/startup_item/tun/StartupParameters.plist
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- Description = "ip tunnel device kernel extension";
- Provides = ("tun");
- Requires = ("Network Configuration");
- OrderPreference = "None";
-}
diff --git a/ext/tap-mac/tuntap/startup_item/tun/tun b/ext/tap-mac/tuntap/startup_item/tun/tun
deleted file mode 100755
index 40b1b411..00000000
--- a/ext/tap-mac/tuntap/startup_item/tun/tun
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-##
-# load the tun kext
-##
-
-. /etc/rc.common
-
-StartService ()
-{
- ConsoleMessage "Initializing tun devices"
-
- if [ -d /Library/Extensions/tun.kext ]; then
- kextload /Library/Extensions/tun.kext
- fi
-}
-
-StopService ()
-{
- if [ -d /Library/Extensions/tun.kext ]; then
- kextunload /Library/Extensions/tun.kext
- fi
-}
-
-RestartService ()
-{
- if [ -d /Library/Extensions/tun.kext ]; then
- kextunload /Library/Extensions/tun.kext
- kextload /Library/Extensions/tun.kext
- fi
-}
-
-RunService "$1"