Puppet Class: nxlog::params
- Defined in:
- manifests/params.pp
Overview
Default settings for parameters
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'manifests/params.pp', line 2
class nxlog::params {
$conf_dir = undef
$conf_file = undef
$ensure_setting = latest
$ext_module = undef
$ext_options = undef
$input_execs = []
$input_module = undef
$input_file_path = undef
$input_type = undef
$nxlog_root = undef
$output_address = undef
$output_execs = []
$output_file_path = undef
$output_module = undef
$output_options = undef
$output_port = undef
$package_name = $::kernel ? {
'Linux' => 'nxlog-ce',
'Windows' => 'nxlog',
default => 'nxlog',
}
$processor_module = undef
$processor_input_format = undef
$processor_output_format = undef
$processor_csv_output_fields = []
$route_destination = undef
$route_source = undef
# Ordering for the config fragments
$order_header = '01'
$order_extension = '05'
$order_input = '10'
$order_processor = '30'
$order_output = '40'
$order_route = '90'
}
|