Remove conflicting ownership resources

/opt/kibana was being chowned to 'kibana' on every run, but
/opt/kibana/<git_version> was a vcsrepo that was being checked out as
www-data. This caused a changed file resource for every file in the git
repo for every puppet run, causing a bunch of noise in the logs and
eventually running the puppetmaster out of disk space.

Also changed directory mode to 755 because 644 doesn't make a ton of
sense.

Change-Id: I3cc511c4a5ae561ec30478d96d9745611d4b5b65
This commit is contained in:
Spencer Krum 2015-12-30 15:11:15 -08:00
parent df57bd6f9e
commit 183dc2e05b
1 changed files with 1 additions and 2 deletions

View File

@ -42,8 +42,7 @@ class kibana (
ensure => directory,
owner => 'kibana',
group => 'kibana',
mode => '0644',
recurse => true,
mode => '0755',
require => User['kibana'],
}