summaryrefslogtreecommitdiffstats
path: root/infest
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-12-30 03:50:24 +0100
committermakefu <github@syntax-fehler.de>2013-12-30 03:50:24 +0100
commitb6a98c4b37829a9b85fafaa20df35cdec2045cf2 (patch)
treebc9c1322cbb1356918a5019e98f7f3f9127bca66 /infest
parent1763c3967ebc918e758518442b7e086e6c66fafa (diff)
parentcc538a66dffe40de6bc699363dae4d80ea1aa149 (diff)
Merge branch 'master' of ssh://github.com/krebscode/painload
Diffstat (limited to 'infest')
-rw-r--r--infest/bootstrap.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/infest/bootstrap.sh b/infest/bootstrap.sh
deleted file mode 100644
index 5d85c769..00000000
--- a/infest/bootstrap.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-set -euf
-# Can be overwritten before install
-KREBSDIR=${KREBSDIR:-/krebs}
-[ "`id -u`" -eq "0" ] || echo "not running as root, stuff may not work. change KREBSDIR env to bootstrap somewhere else!";
-
-
-# brute force install git, krebs style
-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 "$KREBSDIR" ] || git clone --depth 1 https://github.com/krebscode/painload.git "$KREBSDIR" \
- || { echo "cloning failed :(" ; exit 1; } || exit 1
-
-cd $KREBSDIR || { echo "cannot change into $KREBSDIR folder:(" ; exit 1; } || exit 1
-
-
-
-PATH=$PATH:$KREBSDIR/punani/bin
-
-# install the rest
-punani install make
-
-
-echo "do 'make infest' in $KREBSDIR"
-echo "have a nice day"