Skip to content

Commit b0a5bf4

Browse files
authored
Merge pull request #22 from voxpupuli/modulesync
modulesync 10.4.0
2 parents e45908d + ec4180b commit b0a5bf4

File tree

9 files changed

+21
-297
lines changed

9 files changed

+21
-297
lines changed

.github/CONTRIBUTING.md

Lines changed: 0 additions & 272 deletions
This file was deleted.

.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.0.0'
5+
modulesync_config_version: '10.4.0'

.puppet-lint.rc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
33

44
--fail-on-warnings
5-
--no-parameter_documentation-check
6-
--no-parameter_types-check
7-
--no-params_empty_string_assignment
5+
--no-params_empty_string_assignment-check

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
55

66
group :test do
7-
gem 'voxpupuli-test', '~> 11.0', :require => false
7+
gem 'voxpupuli-test', '~> 13.0', :require => false
88
gem 'puppet_metadata', '~> 5.0', :require => false
99
end
1010

@@ -14,11 +14,11 @@ group :development do
1414
end
1515

1616
group :system_tests do
17-
gem 'voxpupuli-acceptance', '~> 3.5', :require => false
17+
gem 'voxpupuli-acceptance', '~> 4.0', :require => false
1818
end
1919

2020
group :release do
21-
gem 'voxpupuli-release', '~> 4.0', :require => false
21+
gem 'voxpupuli-release', '~> 5.0', :require => false
2222
end
2323

2424
gem 'rake', :require => false

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

Rakefile

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,22 @@
11
# Managed by modulesync - DO NOT EDIT
22
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
33

4-
# Attempt to load voxpupuli-test (which pulls in puppetlabs_spec_helper),
5-
# otherwise attempt to load it directly.
64
begin
75
require 'voxpupuli/test/rake'
86
rescue LoadError
9-
begin
10-
require 'puppetlabs_spec_helper/rake_tasks'
11-
rescue LoadError
12-
end
7+
# only available if gem group test is installed
138
end
149

15-
# load optional tasks for acceptance
16-
# only available if gem group releases is installed
1710
begin
1811
require 'voxpupuli/acceptance/rake'
1912
rescue LoadError
13+
# only available if gem group acceptance is installed
2014
end
2115

22-
# load optional tasks for releases
23-
# only available if gem group releases is installed
2416
begin
2517
require 'voxpupuli/release/rake_tasks'
2618
rescue LoadError
27-
# voxpupuli-release not present
19+
# only available if gem group releases is installed
2820
else
2921
GCGConfig.user = 'voxpupuli'
3022
GCGConfig.project = 'puppet-graylog_api'

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 = '',

0 commit comments

Comments
 (0)