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