ctf-tools/burpsuite/install-root

20 lines
323 B
Text
Raw Normal View History

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