Puppet Class: inspircd::modules::hidechans
- Defined in:
- manifests/modules/hidechans.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/modules/hidechans.pp', line 1
class inspircd::modules::hidechans (
$affectsopers = false,
){
$config = {
affectsopers => $affectsopers,
}
::inspircd::internal::configblock { "inspircd ${name} ":
config_name => 'hidechans',
config => $config,
section => 'modules'
}
}
|