Puppet Class: inspircd::modules::hostname

Defined in:
manifests/modules/hostname.pp

Overview

Parameters:

  • charmap (Any) (defaults to: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-_/0123456789')


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'manifests/modules/hostname.pp', line 1

class inspircd::modules::hostname (
  $charmap = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-_/0123456789',
){

  $config = {
    charmap => $charmap,
  }

  ::inspircd::internal::configblock { "inspircd ${name} ":
    config_name => 'hostname',
    config      => $config,
    section     => 'modules'
  }

}