Puppet Class: jitsimeet::jicofo

Defined in:
manifests/jicofo.pp

Summary

Jicofo subclass.

Overview

Parameters:

  • service_name (String[1])

    Name of the jicofo service.

  • package_name (String[1])

    Name of the jicofo package to be installed.

  • package_ensure (String[1])

    State of the jicofo package.



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'manifests/jicofo.pp', line 12

class jitsimeet::jicofo (
  String[1] $service_name,
  String[1] $package_name,
  String[1] $package_ensure,
) {
  contain 'jitsimeet::jicofo::install'
  contain 'jitsimeet::jicofo::config'
  contain 'jitsimeet::jicofo::service'

  Class['jitsimeet::jicofo::install']
  -> Class['jitsimeet::jicofo::config']
  -> Class['jitsimeet::jicofo::service']
}