Skip to content

Commit 7d618ce

Browse files
authored
Merge pull request voxpupuli#704 from buzzdeee/root_group
Exchange all occurences of group => 'root' with group => '0',
2 parents fae4ff5 + 7ac41be commit 7d618ce

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

manifests/config.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
ensure => 'file',
8080
content => template("${module_name}/usr/lib/tmpfiles.d/elasticsearch.conf.erb"),
8181
owner => 'root',
82-
group => 'root',
82+
group => '0',
8383
}
8484
}
8585
}
@@ -100,7 +100,7 @@
100100
ensure => 'directory',
101101
mode => '0644',
102102
owner => 'root',
103-
group => 'root',
103+
group => '0',
104104
}
105105

106106
if ($elasticsearch::service_providers == 'systemd') {

manifests/instance.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@
361361
source => "${elasticsearch::params::homedir}/shield",
362362
recurse => 'remote',
363363
owner => 'root',
364-
group => 'root',
364+
group => '0',
365365
before => Elasticsearch::Service[$name],
366366
}
367367

manifests/service/init.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
ensure => $ensure,
122122
source => $init_defaults_file,
123123
owner => 'root',
124-
group => 'root',
124+
group => '0',
125125
mode => '0644',
126126
before => Service["elasticsearch-instance-${name}"],
127127
notify => $notify_service,
@@ -157,7 +157,7 @@
157157
ensure => $ensure,
158158
content => template($init_template),
159159
owner => 'root',
160-
group => 'root',
160+
group => '0',
161161
mode => '0755',
162162
before => Service["elasticsearch-instance-${name}"],
163163
notify => $notify_service,

manifests/service/openrc.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
ensure => $ensure,
122122
source => $init_defaults_file,
123123
owner => 'root',
124-
group => 'root',
124+
group => '0',
125125
mode => '0644',
126126
before => Service["elasticsearch-instance-${name}"],
127127
notify => $notify_service,
@@ -155,7 +155,7 @@
155155
ensure => $ensure,
156156
content => template($init_template),
157157
owner => 'root',
158-
group => 'root',
158+
group => '0',
159159
mode => '0755',
160160
before => Service["elasticsearch-instance-${name}"],
161161
notify => $notify_service,

manifests/service/systemd.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
ensure => $ensure,
117117
source => $init_defaults_file,
118118
owner => 'root',
119-
group => 'root',
119+
group => '0',
120120
mode => '0644',
121121
before => Service["elasticsearch-instance-${name}"],
122122
notify => $notify_service,

0 commit comments

Comments
 (0)