Adding java::package_suse class

This commit is contained in:
Scott Schneider
2012-12-27 10:59:12 -08:00
parent 017a749d13
commit 7264c4022e
2 changed files with 43 additions and 0 deletions

27
manifests/package_suse.pp Normal file
View File

@@ -0,0 +1,27 @@
# Class: java::package_suse
#
# Implementation class of the Java package
# for SUSE based systems.
#
# This class is not meant to be used by the end user
# of the module. It is an implementation class
# of the composite Class[java]
#
# Parameters:
#
# Actions:
#
# Requires:
#
# Sample Usage:
#
class java::package_suse(
$version,
$distribution
) {
package { 'java':
ensure => $version,
name => $distribution,
}
}