diff options
author | Lassulus <lassulus@googlemail.com> | 2013-01-21 20:27:48 +0100 |
---|---|---|
committer | Lassulus <lassulus@googlemail.com> | 2013-01-21 20:27:48 +0100 |
commit | c00d41c85e4f0b5a7fad0dab7956425cee79a634 (patch) | |
tree | 08778a3de2471ee3eaa15711751e0d63a61afc21 /retiolum/scripts | |
parent | dd3cedb311e3980d78e046a5b49f787758597d9a (diff) |
fix android bug
Diffstat (limited to 'retiolum/scripts')
-rwxr-xr-x | retiolum/scripts/tinc_setup/new_install.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/retiolum/scripts/tinc_setup/new_install.sh b/retiolum/scripts/tinc_setup/new_install.sh index 4dc973d9..7dcc3a7b 100755 --- a/retiolum/scripts/tinc_setup/new_install.sh +++ b/retiolum/scripts/tinc_setup/new_install.sh @@ -163,8 +163,8 @@ if [ $OS -eq 2 ]; then exit 1 else TINCBIN=/data/data/org.poirsouille.tinc_gui/files/tincd - if [ $TINCDIR = 'auto' ]; then TINCDIR=/usr/local/etc/tinc ;fi - if [ $TEMPDIR = 'auto' ]; then TEMPDIR=/data/secure/data ;fi + if [ $TINCDIR = 'auto' ]; then TINCDIR="/usr/local/etc/tinc" ;fi + if [ $TEMPDIR = 'auto' ]; then TEMPDIR="/data/secure/data" ;fi fi else if ! type tincd >/dev/null; then @@ -172,8 +172,8 @@ else exit 1 else TINCBIN=tincd - if [ $TINCDIR = 'auto' ]; then TINCDIR=/etc/tinc ;fi - if [ $TEMPDIR = 'auto' ]; then TEMPDIR=/tmp/tinc-install-fu ;fi + if [ $TINCDIR = 'auto' ]; then TINCDIR="/etc/tinc" ;fi + if [ $TEMPDIR = 'auto' ]; then TEMPDIR="/tmp/tinc-install-fu" ;fi fi fi |