13 lines
394 B
Puppet
13 lines
394 B
Puppet
## automatic_cd::main::install.pp
|
|
# Module name: automatic_cd
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary Class manages installation section for the automatic_cd module
|
|
##############################################################################
|
|
class automatic_cd::main::install (
|
|
|
|
) inherits automatic_cd::params {
|
|
package { $reqpackages:
|
|
ensure => $pkg_ensure,
|
|
}
|
|
}
|