26 lines
577 B
Puppet
26 lines
577 B
Puppet
## cd_alloy::params.pp
|
|
# Module name: cd_alloy
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @param [string] repackages which packages to install
|
|
# @param [string] pkg_ensure 'latest' or 'present'
|
|
# @summary Class contains all parameters for the cd_alloy module.
|
|
##############################################################################
|
|
class cd_alloy::params (
|
|
|
|
$reqpackages = 'alloy',
|
|
$pkg_ensure = 'latest',
|
|
|
|
) {
|
|
|
|
# service
|
|
$ay_service = 'alloy'
|
|
|
|
# dirs
|
|
$ay_main_dir = '/etc/alloy'
|
|
|
|
|
|
# includes must be last
|
|
include cd_alloy::main::config
|
|
|
|
}
|