puppet/modules/java/manifests/package_redhat.pp @ c3e170bda976

Initial commit.
author Steve Losh <steve@stevelosh.com>
date Wed, 28 Sep 2011 18:18:54 -0400
parents (none)
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,
  }

}