From b6cc8a908482997ecd84ac6bbce0607bd759df47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20B=C3=A9rtoli?= Date: Fri, 25 Mar 2022 07:23:11 -0300 Subject: [PATCH] fix(conf): add 'monthly' interval --- logrotate/templates/logrotate.conf.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logrotate/templates/logrotate.conf.tmpl b/logrotate/templates/logrotate.conf.tmpl index 865e04c..db62268 100644 --- a/logrotate/templates/logrotate.conf.tmpl +++ b/logrotate/templates/logrotate.conf.tmpl @@ -23,7 +23,7 @@ no{{ parameter }} # See "man logrotate" for details. # log files rotation period -{% for period in ['hourly', 'daily', 'weekly', 'yearly'] -%} +{% for period in ['hourly', 'daily', 'weekly', 'monthly', 'yearly'] -%} {{ set_parameter(period) }} {%- endfor %}