diff options
author | Felix Richter <github@syntax-fehler.de> | 2011-04-09 15:54:22 +0200 |
---|---|---|
committer | Felix Richter <github@syntax-fehler.de> | 2011-04-09 15:54:22 +0200 |
commit | f103156a33e6f1c5d5a8bdfdb0c3a15522b79f5a (patch) | |
tree | 4753cce4a9582cfa506a6fd0917145be5d8c34b1 /install.sh | |
parent | ee087cae17be9bc2a02fcc27c325b214e5497e40 (diff) |
added arch build/fixed install script,added no_omo
i also added a README file which contains some useful informations about
the scripts
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,11 +3,12 @@ set -e myname="${1:-dummy}" -hostsfile=`dirname $0`/hosts.tar +rel_hostsfile=`dirname $0`/hosts.tar +hostsfile=`readlink -f $rel_hostsfile` netname=retiolum myipv4="${2:-10.7.7.56}" mynet4=10.7.7.0 - +CURR=`pwd` # create configuration directory for $netname mkdir -p /etc/tinc/$netname cd /etc/tinc/$netname |