Puppet Class: confdroid_mattermost::params

Inherited by:
confdroid_mattermost::main::config
Defined in:
manifests/params.pp

Summary

Class holds all the parameters for the confdroid_mattermost module.

Overview

confdroid_mattermost::params.pp Module name: confdroid_mattermost Author: 12ww1160 (12ww1160@confdroid.com)



6
7
8
9
10
11
12
13
14
15
16
17
# File 'manifests/params.pp', line 6

class confdroid_mattermost::params (

) {
# facts
  $fqdn                             = $facts['networking']['fqdn']
  $domain                           = $facts['networking']['domain']
  $os_name                          = $facts['os']['name']
  $os_release                       = $facts['os']['release']['major']

# includes must be last
  include confdroid_mattermost::main::config
}