| It looks like you're trying to manage the file /appserver/pq-kibana/kibana/config/kibana.yml but one of the parent directories does not exist. Puppet doesn't automatically create directories, but you can tell puppet to create them via:
file { ['/appserver', '/appserver/pq-kibana', etc] : |
ensure => directory, |
owner => 0, |
group => 0, |
mode => "0755", |
} |
file { 'appserver/pq-kibana/kibana/config/kibana.yml': |
ensure => file, |
owner => 'kibana', |
group => 'kibana', |
mode => "0640" |
}
|
For issues like this, it's best to join the puppet community on slack. Folks can give you more timely feedback than will occur in JIRA. I'm going to close this ticket for now. |