Puppet Class: cd_alloy::params

Inherited by:
cd_alloy::main::config
cd_alloy::main::install
cd_alloy::main::yumrepo
Defined in:
manifests/params.pp

Summary

Class contains all parameters for the cd_alloy module.

Overview

cd_alloy::params.pp Module name: cd_alloy Author: Arne Teuke (arne_teuke@confdroid.com)

Parameters:

  • reqpackages (string) (defaults to: 'alloy')

    which packages to install

  • pkg_ensure (string) (defaults to: 'latest')

    'latest' or 'present'



8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/params.pp', line 8

class cd_alloy::params (

$reqpackages    = 'alloy',
$pkg_ensure     = 'latest',

) {

  # includes must be last
  include cd_alloy::main::config

}