puppet/modules/java/manifests/package_redhat.pp @ 571a5b9218ae

Add "lib" to .hgignore.
author Steve Losh <steve@stevelosh.com>
date Wed, 28 Sep 2011 20:40:21 -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,
  }

}