Adding java::package_suse class
This commit is contained in:
27
manifests/package_suse.pp
Normal file
27
manifests/package_suse.pp
Normal 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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user