Puppet Class: icingaweb2::module::cube
- Defined in:
- manifests/module/cube.pp
Overview
Class: icingaweb2::module::cube
Install and enable the cube module.
Parameters
- ensure
-
Enable or disable module. Defaults to ‘present`
- git_repository
-
Set a git repository URL. Defaults to github.
- git_revision
-
Set either a branch or a tag name, eg. ‘master` or `v1.0.0`.
16 17 18 19 20 21 22 23 24 25 26 |
# File 'manifests/module/cube.pp', line 16
class icingaweb2::module::cube(
Enum['absent', 'present'] $ensure = 'present',
String $git_repository = 'https://github.com/Icinga/icingaweb2-module-cube.git',
Optional[String] $git_revision = undef,
){
icingaweb2::module {'cube':
ensure => $ensure,
git_repository => $git_repository,
git_revision => $git_revision,
}
}
|