Add JRE package management.
Add the ability to install the JRE package at version 1.6.0_25-fcs
This commit is contained in:
21
manifests/jre_package.pp
Normal file
21
manifests/jre_package.pp
Normal file
@@ -0,0 +1,21 @@
|
||||
# Class: java:jre_package
|
||||
#
|
||||
# class description goes here.
|
||||
#
|
||||
# Parameters:
|
||||
#
|
||||
# Actions:
|
||||
#
|
||||
# Requires:
|
||||
#
|
||||
# Sample Usage:
|
||||
#
|
||||
class java::jre_package (
|
||||
$version='1.6.0_25-fcs'
|
||||
) {
|
||||
# statements
|
||||
package { 'jre':
|
||||
ensure => $version_real,
|
||||
alias => 'java',
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user