Skip to content

Commit a850e52

Browse files
authored
Merge pull request #455 from voxpupuli/modulesync
modulesync 10.1.0-26-ga82038c
2 parents 3107372 + f5cb1cb commit a850e52

File tree

19 files changed

+55
-327
lines changed

19 files changed

+55
-327
lines changed

.github/CONTRIBUTING.md

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

.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.1.0'
5+
modulesync_config_version: '10.2.0'

Gemfile

Lines changed: 1 addition & 1 deletion
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', '~> 12.0', :require => false
88
gem 'puppet_metadata', '~> 5.0', :require => false
99
end
1010

REFERENCE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1850,8 +1850,8 @@ Data type:
18501850

18511851
```puppet
18521852
Optional[Enum[
1853-
'minutes', 'hours', 'days',
1854-
'weeks', 'months', 'years'
1853+
'minutes', 'hours', 'days',
1854+
'weeks', 'months', 'years'
18551855
]]
18561856
```
18571857

@@ -4936,9 +4936,9 @@ Alias of
49364936

49374937
```puppet
49384938
Struct[{
4939-
name => String,
4940-
users => Optional[Array[String[1]]],
4941-
groups => Optional[Array[String[1]]],
4939+
name => String,
4940+
users => Optional[Array[String[1]]],
4941+
groups => Optional[Array[String[1]]],
49424942
}]
49434943
```
49444944

manifests/config/dashboard.pp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
$conf_group = $icingaweb2::conf_group
2525

2626
ensure_resource('file', "${conf_dir}/dashboards/${owner}", {
27-
ensure => directory,
28-
owner => $conf_user,
29-
group => $conf_group,
30-
mode => '2770',
27+
ensure => directory,
28+
owner => $conf_user,
29+
group => $conf_group,
30+
mode => '2770',
3131
})
3232

3333
icingaweb2::inisection { "dashboard-${owner}-${dashboard}":

manifests/config/dashlet.pp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
$conf_group = $icingaweb2::conf_group
4848

4949
ensure_resource('file', "${conf_dir}/dashboards/${owner}", {
50-
ensure => directory,
51-
owner => $conf_user,
52-
group => $conf_group,
53-
mode => '2770',
50+
ensure => directory,
51+
owner => $conf_user,
52+
group => $conf_group,
53+
mode => '2770',
5454
})
5555

5656
icingaweb2::inisection { "dashboard-${owner}-${dashboard}-${dashlet}":

manifests/config/navigation.pp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@
8181
} else {
8282
$file_target = "${conf_dir}/preferences/${owner}/${ini_file}"
8383
ensure_resource('file', "${conf_dir}/preferences/${owner}", {
84-
ensure => directory,
85-
owner => $conf_user,
86-
group => $conf_group,
87-
mode => '2770',
84+
ensure => directory,
85+
owner => $conf_user,
86+
group => $conf_group,
87+
mode => '2770',
8888
})
8989
}
9090

manifests/install.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@
4747
ensure => directory,
4848
owner => root,
4949
group => $conf_group,
50-
;
50+
;
5151
prefix(['modules', 'enabledModules', 'navigation', 'preferences', 'dashboards'], "${conf_dir}/"):
5252
mode => '2770',
53-
;
53+
;
5454
$cert_dir:
5555
mode => '2770',
56-
;
56+
;
5757
}
5858

5959
if $use_tls {

manifests/module.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,16 @@
100100
default:
101101
owner => $conf_user,
102102
group => $conf_group,
103-
;
103+
;
104104
"${conf_dir}/enabledModules/${module}":
105105
ensure => $enable_module,
106106
target => $module_dir,
107-
;
107+
;
108108
["${conf_dir}/modules/${module}", "${state_dir}/${module}"]:
109109
ensure => directory,
110110
owner => 'root',
111111
mode => '2770',
112-
;
112+
;
113113
}
114114

115115
create_resources('icingaweb2::inisection', $settings)

0 commit comments

Comments
 (0)