summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@googlemail.com>2013-01-29 17:55:01 +0100
committerlassulus <lassulus@googlemail.com>2013-01-29 17:55:01 +0100
commit702b0bd06cf86a296243470e0a4ca9fe20c01407 (patch)
tree83a05410a7c69d65916b63ed7fdcb073e2385e1f
parent0124dceeea93bf9cb8e4b7c23c9a0cef15ee7089 (diff)
osx proto added
-rwxr-xr-xretiolum/scripts/tinc_setup/new_install.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/retiolum/scripts/tinc_setup/new_install.sh b/retiolum/scripts/tinc_setup/new_install.sh
index e2049a4b..a52d1edc 100755
--- a/retiolum/scripts/tinc_setup/new_install.sh
+++ b/retiolum/scripts/tinc_setup/new_install.sh
@@ -111,6 +111,8 @@ find_os()
OS='android'
elif test -e /etc/openwrt_release; then
OS='openwrt'
+ elif uname -s | grep -qi 'darwin'; then
+ OS='osx'
else
echo "Cannot determine your operating system, falling back to Linux"
OS='linux'
@@ -170,8 +172,11 @@ if [ $OS = 'android' ]; then
mount -o remount,rw /system
DEV="/dev/tun"
fi
+#elif [ $OS = 'osx' ]; then
+# echo 'this is not implemented'
+# exit 1
else
- if ! type tincd >/dev/null; then
+ if ! exists tincd >/dev/null; then
echo "Please install tinc"
exit 1
else