mirror of https://github.com/apache/archiva.git
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>
This commit is contained in:
parent
0b270de6c0
commit
eb489a1dee
|
@ -106,7 +106,7 @@ pipeline {
|
||||||
// -Dmaven.compiler.fork=true: Do compile in a separate forked process
|
// -Dmaven.compiler.fork=true: Do compile in a separate forked process
|
||||||
// -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail
|
// -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail
|
||||||
// -Pci-build: Profile for CI-Server
|
// -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}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,13 @@
|
||||||
<Policies>
|
<Policies>
|
||||||
<TimeBasedTriggeringPolicy />
|
<TimeBasedTriggeringPolicy />
|
||||||
</Policies>
|
</Policies>
|
||||||
|
<DefaultRolloverStrategy max="30">
|
||||||
|
<Delete basePath="${logsDirectory}" maxDepth="2">
|
||||||
|
<IfFileName glob="*/*.log">
|
||||||
|
<IfLastModified age="P30D"/>
|
||||||
|
</IfFileName>
|
||||||
|
</Delete>
|
||||||
|
</DefaultRolloverStrategy>
|
||||||
</RollingRandomAccessFile>
|
</RollingRandomAccessFile>
|
||||||
|
|
||||||
<RollingRandomAccessFile name="auditlog" fileName="${logsDirectory}/archiva-audit.log"
|
<RollingRandomAccessFile name="auditlog" fileName="${logsDirectory}/archiva-audit.log"
|
||||||
|
@ -47,6 +54,13 @@
|
||||||
<Policies>
|
<Policies>
|
||||||
<TimeBasedTriggeringPolicy />
|
<TimeBasedTriggeringPolicy />
|
||||||
</Policies>
|
</Policies>
|
||||||
|
<DefaultRolloverStrategy max="30">
|
||||||
|
<Delete basePath="${logsDirectory}" maxDepth="2">
|
||||||
|
<IfFileName glob="*/*.log">
|
||||||
|
<IfLastModified age="P30D"/>
|
||||||
|
</IfFileName>
|
||||||
|
</Delete>
|
||||||
|
</DefaultRolloverStrategy>
|
||||||
</RollingRandomAccessFile>
|
</RollingRandomAccessFile>
|
||||||
|
|
||||||
<RollingRandomAccessFile name="redbackAuditLog" fileName="${logsDirectory}/archiva-security-audit.log"
|
<RollingRandomAccessFile name="redbackAuditLog" fileName="${logsDirectory}/archiva-security-audit.log"
|
||||||
|
|
Loading…
Reference in New Issue