add support for ubuntu vivid (15.04) using openjdk-8

add acceptance test node without really understanding what it does.
add test for distribution type jdk for Ubuntu vivid
This commit is contained in:
Lutz Behnke
2015-03-05 11:15:15 +01:00
parent 1b9bb75de8
commit e22aa3a36a
3 changed files with 39 additions and 0 deletions

View File

@@ -109,6 +109,22 @@ class java::params {
},
}
}
'vivid': {
$java = {
'jdk' => {
'package' => 'openjdk-8-jdk',
'alternative' => "java-1.8.0-openjdk-${::architecture}",
'alternative_path' => "/usr/lib/jvm/java-1.8.0-openjdk-${::architecture}/bin/java",
'java_home' => "/usr/lib/jvm/java-1.8.0-openjdk-${::architecture}/",
},
'jre' => {
'package' => 'openjdk-8-jre-headless',
'alternative' => "java-1.8.0-openjdk-${::architecture}",
'alternative_path' => "/usr/lib/jvm/java-1.8.0-openjdk-${::architecture}/bin/java",
'java_home' => "/usr/lib/jvm/java-1.8.0-openjdk-${::architecture}/",
}
}
}
}
}
'Solaris': {