Puppet Class: inspircd::config::disabled

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

Overview

Parameters:

  • commands (Any) (defaults to: $inspircd::params::commands)
  • usermodes (Any) (defaults to: $inspircd::params::usermodes)
  • chanmodes (Any) (defaults to: $inspircd::params::chanmodes)
  • fakenonexistant (Any) (defaults to: $inspircd::params::fakenonexistant)


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

class inspircd::config::disabled (
  $commands = $inspircd::params::commands,
  $usermodes = $inspircd::params::usermodes,
  $chanmodes = $inspircd::params::chanmodes,
  $fakenonexistant = $inspircd::params::fakenonexistant,
) inherits inspircd::params {

  $config = {
    commands        => $commands,
    usermodes       => $usermodes,
    chanmodes       => $chanmodes,
    fakenonexistant => $fakenonexistant,
  }

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


}