Puppet Class: icingaweb2::module::reactbundle
- Defined in:
- manifests/module/reactbundle.pp
Summary
Installs and enables the reactbundle module.Overview
Note:
If you want to use ‘git` as `install_method`, the CLI `git` command has to be installed. You can manage it yourself as package resource or declare the package name in icingaweb2 class parameter `extra_packages`.
15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'manifests/module/reactbundle.pp', line 15
class icingaweb2::module::reactbundle(
String $git_repository,
String $git_revision,
Enum['absent', 'present'] $ensure = 'present',
){
icingaweb2::module { 'reactbundle':
ensure => $ensure,
git_repository => $git_repository,
git_revision => $git_revision,
}
}
|