mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-04 15:17:12 +00:00
15 lines
308 B
Bash
Executable file
15 lines
308 B
Bash
Executable file
#!/bin/bash
|
|
set -eu -o pipefail
|
|
|
|
case "$DISTRI" in
|
|
"debian")
|
|
apt-get -y install openjdk-7-jre openjdk-7-jdk
|
|
;;
|
|
"archlinux")
|
|
pacman -Syu --noconfirm --needed jre7-openjdk jdk7-openjdk
|
|
;;
|
|
*)
|
|
echo "Unsupported distribution: ''"
|
|
exit 1
|
|
;;
|
|
esac
|