diff options
| author | Lassulus <lassulus@googlemail.com> | 2012-12-27 23:26:50 +0100 | 
|---|---|---|
| committer | Lassulus <lassulus@googlemail.com> | 2012-12-27 23:26:50 +0100 | 
| commit | 72be0c40f7bf594887364bf3dcb7774f99849b24 (patch) | |
| tree | 2e2545f6f4d0f135c1d504111b17e886903e12cf /retiolum/scripts/tinc_setup | |
| parent | 5293a12d29879a295f12e28f70104dbd91bf1621 (diff) | |
fixed install bug
Diffstat (limited to 'retiolum/scripts/tinc_setup')
| -rwxr-xr-x | retiolum/scripts/tinc_setup/new_install.sh | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/retiolum/scripts/tinc_setup/new_install.sh b/retiolum/scripts/tinc_setup/new_install.sh index f4678c41..ad1a04ac 100755 --- a/retiolum/scripts/tinc_setup/new_install.sh +++ b/retiolum/scripts/tinc_setup/new_install.sh @@ -121,7 +121,7 @@ get_hostname()  #os autodetection  find_os()  { -    if grep -qe 'Linux' /etc/*release 2>/dev/null || grep -qe 'Linux' /etc/issue ; then +    if grep -qe 'Linux' /etc/*release 2>/dev/null || grep -qe 'Linux' /etc/issue 2>/dev/null; then          OS=1      elif type getprop >/dev/null; then          OS=2 @@ -367,7 +367,7 @@ else      echo '' >> tinc-up      echo "addr4=\$(sed -n \"s|^ *Subnet *= *\\($SUBNET4[.][^ ]*\\) *$|\\1|p\" \$host)" >> tinc-up      echo 'ifconfig $INTERFACE $addr4' >> tinc-up -    echo "route add -net $FULLSUBNET netmask $RETARDEDMASK dev $INTERFACE " >> tinc-up +    echo "route add -net $FULLSUBNET netmask $RETARDEDMASK dev \$INTERFACE " >> tinc-up  fi  #fix permissions | 
