Puppet Class: inspircd::config::whowas

Inherits:
inspircd::params
Defined in:
manifests/config/whowas.pp

Overview

Parameters:

  • groupsize (Any) (defaults to: $inspircd::params::groupsize)
  • maxgroups (Any) (defaults to: $inspircd::params::maxgroups)
  • maxkeep (Any) (defaults to: $inspircd::params::maxkeep)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'manifests/config/whowas.pp', line 1

class inspircd::config::whowas (
  $groupsize = $inspircd::params::groupsize,
  $maxgroups = $inspircd::params::maxgroups,
  $maxkeep = $inspircd::params::maxkeep,
) inherits inspircd::params {


  $config = {
    groupsize => $groupsize,
    maxgroups => $maxgroups,
    maxkeep   => $maxkeep
  }

  ::inspircd::internal::configblock { "inspircd ${name}":
    config_name => 'whowas',
    config      => $config,
    order       => '23'
  }


}