Skip to content

Commit 07ccf4c

Browse files
pccibotTheMeier
authored andcommitted
modulesync 10.4.0
1 parent bc4c055 commit 07ccf4c

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ permissions:
2222
jobs:
2323
puppet:
2424
name: Puppet
25-
uses: voxpupuli/gha-puppet/.github/workflows/basic.yml@v3
25+
uses: voxpupuli/gha-puppet/.github/workflows/basic.yml@v4

.msync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Managed by modulesync - DO NOT EDIT
33
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
44

5-
modulesync_config_version: '10.3.0'
5+
modulesync_config_version: '10.4.0'

REFERENCE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,15 +253,15 @@ Default value: `undef`
253253

254254
Data type: `String`
255255

256-
256+
The replacement string to use for the regex replace operation.
257257

258258
Default value: `''`
259259

260260
##### <a name="-graylog_api--extractor--regex_replace--replace_all"></a>`replace_all`
261261

262262
Data type: `Boolean`
263263

264-
264+
Whether to replace all occurrences of the regex pattern or just the first occurrence.
265265

266266
Default value: `false`
267267

@@ -3276,8 +3276,8 @@ Alias of
32763276

32773277
```puppet
32783278
Struct[{
3279-
match => Enum['all','either'],
3280-
rules => Array[String,1],
3279+
match => Enum['all','either'],
3280+
rules => Array[String,1],
32813281
}]
32823282
```
32833283

manifests/extractor/regex_replace.pp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@
3131
# @param order
3232
# Sort index for this extractor.
3333
#
34+
# @param replacement
35+
# The replacement string to use for the regex replace operation.
36+
#
37+
# @param replace_all
38+
# Whether to replace all occurrences of the regex pattern or just the first occurrence.
39+
#
3440
define graylog_api::extractor::regex_replace (
3541
Enum['present','absent'] $ensure = 'present',
3642
String $input = '',

types/pipeline/stage.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @summary Custom Type for Graylog_api pipeline stage
22
#
33
type Graylog_api::Pipeline::Stage = Struct[{
4-
match => Enum['all','either'],
5-
rules => Array[String,1],
4+
match => Enum['all','either'],
5+
rules => Array[String,1],
66
}]

0 commit comments

Comments
 (0)