From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] freeradius: Add a logrotate configuration file Date: Thu, 22 Aug 2019 21:45:29 +0000 Message-ID: <20190822214529.7008-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5031718163812920572==" List-Id: --===============5031718163812920572== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- config/freeradius/logrotate | 11 +++++++++++ lfs/freeradius | 7 ++++++- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 config/freeradius/logrotate diff --git a/config/freeradius/logrotate b/config/freeradius/logrotate new file mode 100644 index 000000000..ad8d43577 --- /dev/null +++ b/config/freeradius/logrotate @@ -0,0 +1,11 @@ +/var/log/radius/*.log /var/log/radius/radacct/*/* { + weekly + rotate 4 + copytruncate + compress + notifempty + missingok + postrotate + /etc/init.d/freeradius reload &>/dev/null || true + endscript +} diff --git a/lfs/freeradius b/lfs/freeradius index 21f6c0ad2..4afe55f18 100644 --- a/lfs/freeradius +++ b/lfs/freeradius @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = freeradius -PAK_VER = 7 +PAK_VER = 8 DEPS = "samba" @@ -141,6 +141,11 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) install -v -m 644 $(DIR_SRC)/config/backup/includes/freeradius \ /var/ipfire/backup/addons/includes/freeradius + # Logrotate + -mkdir -pv /etc/logrotate.d + install -v -m 644 $(DIR_SRC)/config/freeradius/logrotate \ + /etc/logrotate.d/freeradius + #install initscripts $(call INSTALL_INITSCRIPT,freeradius) -- 2.20.1 --===============5031718163812920572==--