puppet/modules/java/manifests/package_redhat.pp @ 77f9ac55543d
Clean up a bit.
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 03 Oct 2011 20:30:15 -0400 |
parents |
c3e170bda976 |
children |
(none) |
# Class: java::package_redhat
#
# Implementation class of the Java package
# for redhat 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_redhat(
$version,
$distribution
) {
package { 'java':
ensure => $version,
name => $distribution,
}
}