mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 22:42:38 +00:00
19 lines
323 B
Bash
Executable file
19 lines
323 B
Bash
Executable file
#!/bin/bash
|
|
set -eu -o pipefail
|
|
|
|
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
|