From 72db92f41f480bc96b249e0406b0372019f42c34 Mon Sep 17 00:00:00 2001 From: byt3bl33d3r Date: Sun, 19 Oct 2014 11:22:22 +0200 Subject: [PATCH] modified binkybears install script --- setup.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..c4c1c73 --- /dev/null +++ b/setup.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +if [[ $EUID -ne 0 ]]; then + echo "You must be root" 2>&1 + exit 1 +fi + +apt-get install python-pip msgpack-python python-nfqueue python-imaging -y +apt-get install python-requests python-configobj python-pefile -y +git submodule init +git submodule update +cd bdfactory/ && ./install.sh