Defined Type: rsyslog::template::string

Defined in:
manifests/template/string.pp

Overview

Add template strings to the rsyslog configuration

You'll need to write the entire template line due to the complexity of the rsyslog configuration parameters.

Leading spaces will be removed.

Examples:

Template String

rsyslog::template::string { 'example':
  $content => '/var/log/hosts/%HOSTNAME%/example.log'
}

### Produces:

template(name="example" type="string" string="/var/log/hosts/%HOSTNAME%/example.log")

Parameters:

  • name

    The literal name of the file (not file path) that will be used

  • string (String)

    The rsyslog template string that you wish to add to the system

    • This is fed, without formatting, directly into the target file



25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'manifests/template/string.pp', line 25

define rsyslog::template::string (
  String $string
) {
  $_safe_name = regsubst($name,'/','__')

  rsyslog::rule { "05_simp_templates/${_safe_name}.conf":
    # lint:ignore:double_quoted_strings lint:ignore:only_variable_string
    content => @("EOM")
      template(name="${_safe_name}" type="string" string="${string}")
      |EOM
    #lint:endignore
  }
}