Puppet Class: icingaweb2::mod::businessprocess

Defined in:
manifests/mod/businessprocess.pp

Overview

Class icingaweb2::mod::businessprocess

Parameters:

  • git_repo (Any) (defaults to: 'https://github.com/Icinga/icingaweb2-module-businessprocess.git')
  • git_revision (Any) (defaults to: undef)
  • install_method (Any) (defaults to: 'git')
  • pkg_deps (Any) (defaults to: undef)
  • pkg_ensure (Any) (defaults to: 'present')
  • web_root (Any) (defaults to: $::icingaweb2::params::web_root)


3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'manifests/mod/businessprocess.pp', line 3

class icingaweb2::mod::businessprocess (
  $git_repo       = 'https://github.com/Icinga/icingaweb2-module-businessprocess.git',
  $git_revision   = undef,
  $install_method = 'git',
  $pkg_deps       = undef,
  $pkg_ensure     = 'present',
  $web_root       = $::icingaweb2::params::web_root,
) {
  require ::icingaweb2

  validate_absolute_path($web_root)
  validate_re($install_method,
    [
      'git',
      'package',
    ]
  )

  File {
    require => Class['::icingaweb2::config'],
    owner => $::icingaweb2::config_user,
    group => $::icingaweb2::config_group,
    mode  => $::icingaweb2::config_file_mode,
  }

  file { "${web_root}/modules/businessprocess":
    ensure => directory,
    mode   => $::icingaweb2::config_dir_mode;
  }

  if $install_method == 'git' {
    if $pkg_deps {
      package { $pkg_deps:
        ensure => $pkg_ensure,
        before => Vcsrepo['businessprocess'],
      }
    }

    vcsrepo { 'businessprocess':
      ensure   => present,
      path     => "${web_root}/modules/businessprocess",
      provider => 'git',
      revision => $git_revision,
      source   => $git_repo,
    }
  }
}