You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 15, 2025. It is now read-only.
- Add the ability to create custom properties with 'set' [\#86](https://github.com/voxpupuli/puppet-rsyslog/pull/86) ([dhollinger](https://github.com/dhollinger))
14
+
- Add support to rsyslog::client for providing property\_filters and exp… [\#78](https://github.com/voxpupuli/puppet-rsyslog/pull/78) ([fatmcgav](https://github.com/fatmcgav))
15
+
16
+
**Merged pull requests:**
17
+
18
+
- Update code to more cleanly format nested configuration [\#85](https://github.com/voxpupuli/puppet-rsyslog/pull/85) ([dhollinger](https://github.com/dhollinger))
19
+
- drop EOL OSs; fix puppet version range [\#83](https://github.com/voxpupuli/puppet-rsyslog/pull/83) ([bastelfreak](https://github.com/bastelfreak))
20
+
- use gitrepos in .fixtures.yml [\#82](https://github.com/voxpupuli/puppet-rsyslog/pull/82) ([bastelfreak](https://github.com/bastelfreak))
21
+
- Rely on beaker-hostgenerator for docker nodesets [\#79](https://github.com/voxpupuli/puppet-rsyslog/pull/79) ([ekohl](https://github.com/ekohl))
@@ -51,11 +62,8 @@ These should not affect the functionality of the module.
51
62
**Implemented enhancements:**
52
63
53
64
- Filters require a unique name when used in rulesets. [\#65](https://github.com/voxpupuli/puppet-rsyslog/issues/65)
54
-
- Remove unique name requirement for Filters inside of a Ruleset resource [\#66](https://github.com/voxpupuli/puppet-rsyslog/pull/66) ([dhollinger](https://github.com/dhollinger))
55
-
56
-
**Fixed bugs:**
57
-
58
65
- Test travis release fix [\#68](https://github.com/voxpupuli/puppet-rsyslog/pull/68) ([dhollinger](https://github.com/dhollinger))
66
+
- Remove unique name requirement for Filters inside of a Ruleset resource [\#66](https://github.com/voxpupuli/puppet-rsyslog/pull/66) ([dhollinger](https://github.com/dhollinger))
59
67
60
68
**Merged pull requests:**
61
69
@@ -72,8 +80,6 @@ These should not affect the functionality of the module.
* Feature: Added an `external_service` boolean parameter for allowing puppet-rsyslog to manage configs/logs shared with other processes that may be managed by other modules. (https://github.com/crayfishx/puppet-rsyslog/pull/28)
163
166
@@ -186,4 +189,4 @@ This release contains many new enhancements and features, and brings the module
186
189
*[Fixed the global params config styling](https://github.com/crayfishx/puppet-rsyslog/pull/13)
187
190
188
191
189
-
\**This Changelog was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
192
+
\**This Changelog was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -566,7 +566,8 @@ Configures Rsyslog ruleset blocks in rainerscript. There are two elements in the
566
566
*`rules` - the actual content that goes inside the ruleset. Currently the following are supported:
567
567
*`action` - rsyslog actions defined inside of the ruleset.
568
568
*`lookup` - Sets a variable to the results of an rsyslog lookup.
569
-
*`set` - Set an rsyslog variable
569
+
*`set` - Set an rsyslog variable or property. Property explicitly requires that the set name be a string beginning with `$!`, while a variable can be a plain string or a string starting with `$.`.
570
+
***NOTE: Setting the variable with a string that does NOT begin with `$.` is deprecated and will be removed in the next major release!**
570
571
*`call` - call a specific action.
571
572
*`exec` - execute the following system command
572
573
*`expression_filter` - Filter based on one or more expressions.
0 commit comments