diff options
author | Romain Tartière <romain@FreeBSD.org> | 2023-04-28 11:00:54 -1000 |
---|---|---|
committer | Romain Tartière <romain@FreeBSD.org> | 2023-04-28 15:36:10 -1000 |
commit | e9c5ed32578f79b7324aab9ba9fe5d2b76a089a2 (patch) | |
tree | 79820fabb057e3091a9ed8a07609cd634272ddae /sysutils/puppetserver8/files/patch-ext__config__logback.xml | |
parent | sysutils/puppet8: New port (diff) |
sysutils/puppetserver8: New port
Puppet master is a Ruby application that compiles configurations
for any number of Puppet agent nodes, using Puppet code and various
other data sources. (For more info, see Overview of Puppet's
Architecture.)
Puppet Server is an application that runs on the Java Virtual Machine
(JVM) and provides the same services as the classic Puppet master
application. It mostly does this by running the existing Puppet
master code in several JRuby interpreters, but it replaces some
parts of the classic application with new services written in
Clojure.
Diffstat (limited to 'sysutils/puppetserver8/files/patch-ext__config__logback.xml')
-rw-r--r-- | sysutils/puppetserver8/files/patch-ext__config__logback.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sysutils/puppetserver8/files/patch-ext__config__logback.xml b/sysutils/puppetserver8/files/patch-ext__config__logback.xml new file mode 100644 index 000000000000..278ccaf5f825 --- /dev/null +++ b/sysutils/puppetserver8/files/patch-ext__config__logback.xml @@ -0,0 +1,17 @@ +--- ext/config/logback.xml.orig 2018-09-18 17:16:33 UTC ++++ ext/config/logback.xml +@@ -6,12 +6,11 @@ + </appender> + + <appender name="F1" class="ch.qos.logback.core.rolling.RollingFileAppender"> +- <!-- TODO: this path should not be hard-coded --> +- <file>/var/log/puppetlabs/puppetserver/puppetserver.log</file> ++ <file>/var/log/puppetserver/puppetserver.log</file> + <append>true</append> + <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy"> + <!-- rollover daily --> +- <fileNamePattern>/var/log/puppetlabs/puppetserver/puppetserver-%d{yyyy-MM-dd}.%i.log.gz</fileNamePattern> ++ <fileNamePattern>/var/log/puppetserver/puppetserver-%d{yyyy-MM-dd}.%i.log.gz</fileNamePattern> + <!-- each file should be at most 200MB, keep 90 days worth of history, but at most 1GB total--> + <maxFileSize>200MB</maxFileSize> + <maxHistory>90</maxHistory> |