Puppet Class: simianarmy::log4j_properties
- Defined in:
- manifests/log4j_properties.pp
Summary
Write the `application.properties` file.Overview
This is an internal class that isn't normally used. You can change values for it's parameters using Hiera.
Copyright © 2017-2019 Shine Solutions Group, unless otherwise noted.
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'manifests/log4j_properties.pp', line 35
class simianarmy::log4j_properties (
String $path,
String $owner,
String $group,
String $mode,
String $log_file_name,
String $stdout_threshold = 'WARN',
String $daily_rolling_threshold = 'INFO',
) {
file { $path:
ensure => file,
owner => $owner,
group => $group,
mode => $mode,
content => template('simianarmy/log4j_properties.erb'),
}
}
|