diff options
author | Lassulus <lassulus@googlemail.com> | 2012-12-21 22:21:49 +0100 |
---|---|---|
committer | Lassulus <lassulus@googlemail.com> | 2012-12-21 22:21:49 +0100 |
commit | 62b9254d0a3dc4d3100840ac7b21b6c60d730834 (patch) | |
tree | bb636fdbce47390aea7abc5fe77aae929813242a | |
parent | 668526a3082e9d67a62193cc8577da4940cc1dfe (diff) |
fixed bugs on OpenWrt
-rwxr-xr-x | retiolum/scripts/tinc_setup/new_install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/retiolum/scripts/tinc_setup/new_install.sh b/retiolum/scripts/tinc_setup/new_install.sh index 15c4fefb..1227912e 100755 --- a/retiolum/scripts/tinc_setup/new_install.sh +++ b/retiolum/scripts/tinc_setup/new_install.sh @@ -310,7 +310,8 @@ mkdir -p $TINCDIR/$NETNAME cd $TINCDIR/$NETNAME if [ $OS -eq 3 ]; then - $LOADER http://euer.krebsco.de/retiolum/supernodes.tar.gz | tar xz -C $TINCDIR/$NETNAME/hosts/ + mkdir hosts + $LOADER http://euer.krebsco.de/retiolum/supernodes.tar.gz | tar xz -C hosts/ else mv $TEMPDIR/hosts ./ fi |