diff options
author | makefu <github@syntax-fehler.de> | 2012-03-10 01:01:22 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2012-03-10 01:01:22 +0100 |
commit | fe7570c86536b6ca84aad115bc516b5e4f9c3990 (patch) | |
tree | 9fd5facb3b3ab1297c0a37651858966cd92acd35 /infest | |
parent | a401be4bc5e393d35a220d0e9b33482794d66597 (diff) |
refactor bootstrap file
Diffstat (limited to 'infest')
-rw-r--r-- | infest/bootstrap.sh | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/infest/bootstrap.sh b/infest/bootstrap.sh index c434a4fe..3a560ffa 100644 --- a/infest/bootstrap.sh +++ b/infest/bootstrap.sh @@ -1,23 +1,27 @@ #!/bin/sh -set -x +set -euf +# Can be overwritten before install +KREBSDIR=${KREBSDIR:-/krebs} [ "`id -u`" -eq "0" ] || { echo "you need to be root!"; exit 1;} || exit 1 -[ -e '/usr/bin/git' ] || \ -apt-get install -y git-core || \ -yum install git || \ -opkg install git || \ -pacman -Sy git || \ -{ echo "please install git!"; exit 1;} || exit 1 +command -v git || \ + apt-get install -y git-core || \ + yum install git || \ + opkg install git || \ + ipkg install git || \ + pacman -Sy git || \ + { echo "please install git manually!"; exit 1;} || exit 1 -[ -e '/krebs' ] || git clone git://github.com/krebscode/painload.git /krebs \ -|| { echo "cloning failed :(" ; exit 1; } || exit 1 +[ -e "$KREBSDIR" ] || git clone https://github.com/krebscode/painload.git "$KREBSDIR" \ + || { echo "cloning failed :(" ; exit 1; } || exit 1 -cd /krebs || { echo "cannot change into /krebs folder:(" ; exit 1; } || exit 1 +cd $KREBSDIR || { echo "cannot change into $KREBSDIR folder:(" ; exit 1; } || exit 1 -#read -n1 -p "infest now? [yN]" - -#[[ $REPLY = [yY] ]] && make infest -#echo $REPLY -echo "do 'make infest' in /krebs" +echo "do 'make infest' in $KREBSDIR" echo "have a nice day" + +PATH=$PATH:$KREBSDIR/punani/bin + +# bootstrap the rest +punani install make |