ctf-tools/burpsuite/install-root

18 lines
283 B
Text
Raw Normal View History

2015-05-14 18:12:30 -07:00
#!/bin/bash
set -eu -o pipefail
2015-05-14 18:12:30 -07:00
case "$DISTRI" in
"debian")
apt-get -y install openjdk-7-jre
;;
"archlinux")
pacman -Syu --noconfirm --needed jre7-openjdk
;;
*)
echo "Unsupported distribution: ''"
exit 1
;;
esac