Skip to content

Commit 770028c

Browse files
f0rkizardus
authored andcommitted
Do not use pwntools binutils ppa on xenial and later
1 parent e7b9d92 commit 770028c

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

pwntools/install-root-ubuntu

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#!/bin/bash -ex
22

3-
apt-get -y install software-properties-common
4-
apt-add-repository -y ppa:pwntools/binutils
5-
apt-get update
6-
apt-get -y install binutils-.*-linux-gnu libffi-dev libssl-dev
3+
apt-get install -y python2.7 python-pip python-dev git libssl-dev libffi-dev build-essential
4+
5+
if [[ $(lsb_release -rs | sed 's/\(..\)\.../\1/') -lt 16 ]]; then
6+
echo "using pwntools binutils ppa for pre-xenial ubuntu"
7+
apt-get -y install software-properties-common
8+
apt-add-repository -y ppa:pwntools/binutils
9+
apt-get update
10+
apt-get -y install binutils-.*-linux-gnu
11+
fi

0 commit comments

Comments
 (0)