Puppet Class: icingaweb2::module::businessprocess
- Defined in:
- manifests/module/businessprocess.pp
Summary
Installs and enables the businessprocess 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`.
Note:
Check out the [Business Process module documentation](www.icinga.com/docs/icinga-business-process-modelling/latest/) for requirements.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'manifests/module/businessprocess.pp', line 31
class icingaweb2::module::businessprocess (
Enum['absent', 'present'] $ensure,
Stdlib::HTTPUrl $git_repository,
String[1] $package_name,
Enum['git', 'none', 'package'] $install_method,
Stdlib::Absolutepath $module_dir = "${icingaweb2::globals::default_module_path}/businessprocess",
Optional[String[1]] $git_revision = undef,
) {
require icingaweb2
icingaweb2::module { 'businessprocess':
ensure => $ensure,
git_repository => $git_repository,
git_revision => $git_revision,
install_method => $install_method,
module_dir => $module_dir,
package_name => $package_name,
}
}
|