Change /etc/logstash dir ownership to root

This commit updates the /etc/logstash config dir (where the
subunit2sql configs live, which makes so much sense) to be owned by
root. There is no logstash user ever created on the worker nodes so
we shouldn't try to assign it as the owner.

Change-Id: Ifd85cf4d33c85a958aa33fca50bdd847a651e560
This commit is contained in:
Matthew Treinish 2016-03-04 12:02:31 -05:00
parent e12fc216ed
commit 50c21b8c3f
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ define subunit2sql::worker (
if ! defined(File['/etc/logstash']) {
file { '/etc/logstash':
ensure => directory,
owner => 'logstash',
group => 'logstash',
owner => 'root',
group => 'root',
mode => '0644',
}
}