You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
355 B
12 lines
355 B
10 months ago
|
#!/bin/bash
|
||
|
# Author: Pablo Greco <pablo@fliagreco.com.ar>
|
||
|
# Based on java-1.6.0-openjdk test from Christoph Galuschka <christoph.galuschka@chello.at>
|
||
|
|
||
|
. $(dirname "$0")/p_java-openjdk-common
|
||
|
|
||
|
t_Log "Running $0 - installing openjdk runtime/development environment."
|
||
|
|
||
|
for i in $JAVA_VERSIONS;do
|
||
|
t_InstallPackage java-$i-openjdk java-$i-openjdk-devel
|
||
|
done
|