Add dateext and related parameters for logrotate
logrotate.pp should support dateext and related parameters. By this change, a filename of a rotated file can be easily distinguished by rotated date. Change-Id: I798304a472df41b86a88611c97c2c99131faa0ad
This commit is contained in:
parent
bcb17115a3
commit
1eafeb67bf
@ -79,6 +79,18 @@
|
|||||||
# Configures forced purge period for rotated logs.
|
# Configures forced purge period for rotated logs.
|
||||||
# Overrides the rotation and rotate settings.
|
# Overrides the rotation and rotate settings.
|
||||||
#
|
#
|
||||||
|
# [*dateext*]
|
||||||
|
# (optional) Defaults to undef.
|
||||||
|
# Configures the dateext parameter.
|
||||||
|
#
|
||||||
|
# [*dateformat*]
|
||||||
|
# (optional) Defaults to undef.
|
||||||
|
# Configures the dateformat parameter used with dateext parameter.
|
||||||
|
#
|
||||||
|
# [*dateyesterday*]
|
||||||
|
# (optional) Defaults to undef.
|
||||||
|
# Configures the dateyesterday parameter used with dateext parameter.
|
||||||
|
#
|
||||||
# DEPRECATED PARAMETERS
|
# DEPRECATED PARAMETERS
|
||||||
#
|
#
|
||||||
# [*size*]
|
# [*size*]
|
||||||
@ -102,6 +114,9 @@ class tripleo::profile::base::logging::logrotate (
|
|||||||
$maxsize = '10M',
|
$maxsize = '10M',
|
||||||
$rotate = 14,
|
$rotate = 14,
|
||||||
$purge_after_days = 14,
|
$purge_after_days = 14,
|
||||||
|
$dateext = undef,
|
||||||
|
$dateformat = undef,
|
||||||
|
$dateyesterday = undef,
|
||||||
# DEPRECATED PARAMETERS
|
# DEPRECATED PARAMETERS
|
||||||
$size = undef,
|
$size = undef,
|
||||||
) {
|
) {
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
other:
|
||||||
|
- |
|
||||||
|
Add dateext and related paramters for containerized logrotate service to
|
||||||
|
find easily when logfiles were rotated.
|
@ -19,4 +19,13 @@
|
|||||||
<%- if @compress %>
|
<%- if @compress %>
|
||||||
compress
|
compress
|
||||||
<%- end %>
|
<%- end %>
|
||||||
|
<%- if @dateext %>
|
||||||
|
dateext
|
||||||
|
<%- if @dateformat %>
|
||||||
|
dateformat <%= @dateformat %>
|
||||||
|
<%- end %>
|
||||||
|
<%- if @dateyesterday %>
|
||||||
|
dateyesterday
|
||||||
|
<%- end %>
|
||||||
|
<%- end %>
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user