diff options
author | Olivier Lamy <olamy@apache.org> | 2022-04-11 07:53:28 +1000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2022-04-11 07:56:10 +1000 |
commit | eb489a1deedf3366325922b29473c8b2302f9fce (patch) | |
tree | 843ec2e644b1da272d7898de3105aeb7debdfefd | |
parent | 0b270de6c0a1b1115235a03c4a27a17e55242190 (diff) | |
download | archiva-eb489a1deedf3366325922b29473c8b2302f9fce.tar.gz archiva-eb489a1deedf3366325922b29473c8b2302f9fce.zip |
add a Delete action to delete logs older than 30D (#64)
* delete old logs files
* do not fork compilation
Signed-off-by: Olivier Lamy <olamy@apache.org>
-rw-r--r-- | Jenkinsfile | 2 | ||||
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 91354a681..c15f75642 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -106,7 +106,7 @@ pipeline { // -Dmaven.compiler.fork=true: Do compile in a separate forked process // -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail // -Pci-build: Profile for CI-Server - sh "mvn ${cmdLine} -B -U -e -fae -Dorg.slf4j.simpleLogger.showThreadName=true -Dmaven.compiler.fork=true -Pci-build -T${THREADS}" + sh "mvn ${cmdLine} -B -U -e -fae -Dorg.slf4j.simpleLogger.showThreadName=true -Pci-build -T${THREADS}" } } } diff --git a/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml b/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml index 7f12f2f6c..6d18560b2 100644 --- a/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml +++ b/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml @@ -36,6 +36,13 @@ <Policies> <TimeBasedTriggeringPolicy /> </Policies> + <DefaultRolloverStrategy max="30"> + <Delete basePath="${logsDirectory}" maxDepth="2"> + <IfFileName glob="*/*.log"> + <IfLastModified age="P30D"/> + </IfFileName> + </Delete> + </DefaultRolloverStrategy> </RollingRandomAccessFile> <RollingRandomAccessFile name="auditlog" fileName="${logsDirectory}/archiva-audit.log" @@ -47,6 +54,13 @@ <Policies> <TimeBasedTriggeringPolicy /> </Policies> + <DefaultRolloverStrategy max="30"> + <Delete basePath="${logsDirectory}" maxDepth="2"> + <IfFileName glob="*/*.log"> + <IfLastModified age="P30D"/> + </IfFileName> + </Delete> + </DefaultRolloverStrategy> </RollingRandomAccessFile> <RollingRandomAccessFile name="redbackAuditLog" fileName="${logsDirectory}/archiva-security-audit.log" |