systemd support [release 3.8.8-2mamba;Fri Dec 26 2014]

This commit is contained in:
Silvan Calarco 2024-01-06 06:27:37 +01:00
parent 92570f0b5c
commit 7e5e491592
3 changed files with 46 additions and 14 deletions

9
logrotate.service Normal file
View File

@ -0,0 +1,9 @@
[Unit]
Description=Rotate log files
[Service]
Type=oneshot
ExecStart=/usr/sbin/logrotate /etc/logrotate.conf
Nice=19
IOSchedulingClass=best-effort
IOSchedulingPriority=7

View File

@ -1,6 +1,6 @@
Name: logrotate
Version: 3.8.8
Release: 1mamba
Release: 2mamba
Summary: Rotates, compresses, removes and mails system log files
Group: System/Tools
Vendor: openmamba
@ -11,14 +11,15 @@ Source0: https://fedorahosted.org/releases/l/o/logrotate/logrotate-%{versi
Source1: %{name}.conf
Source2: %{name}.cron
Source3: %{name}-init
Source4: %{name}.timer
Source5: %{name}.service
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libpopt-devel
BuildRequires: libselinux-devel
## AUTOBUILDREQ-END
Requires(pre): initscripts
Requires(post):chkconfig
Requires(post):systemd
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
@ -40,25 +41,33 @@ Install the logrotate package if you need a utility to deal with the log files o
make install PREFIX=%{buildroot} MANDIR=%{_mandir}
install -D -m 644 %{S:1} %{buildroot}%{_sysconfdir}/logrotate.conf
install -D -m 755 %{S:2} %{buildroot}%{_sysconfdir}/cron.daily/logrotate
install -D -m 744 %{S:3} %{buildroot}%{_initrddir}/logrotate
#install -D -m 755 %{S:2} %{buildroot}%{_sysconfdir}/cron.daily/logrotate
#install -D -m 744 %{S:3} %{buildroot}%{_initrddir}/logrotate
install -D -m 644 %{S:4} %{buildroot}%{_unitdir}/logrotate.timer
install -D -m 644 %{S:5} %{buildroot}%{_unitdir}/logrotate.service
install -d %{buildroot}%{_sysconfdir}/logrotate.d/
install -d %{buildroot}/var/lib
touch %{buildroot}/var/lib/logrotate.status
install -d %{buildroot}%{_unitdir}/multi-user.target.wants
%post
if [ $1 -ge 1 ]; then
# new install
chkconfig --add logrotate
systemctl -q daemon-reload
systemctl -q enable logrotate.timer
systemctl -q start logrotate.timer
fi
exit 0
:
%preun
%postun
if [ $1 -eq 0 ]; then
# erase
chkconfig --del logrotate
systemctl -q disable logrotate.tiemr
fi
exit 0
:
%posttrans
# clean old sysv broken links
find /etc/rc[0-6].d/ -type l -xtype l -exec rm -f {} \;
:
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@ -67,14 +76,17 @@ exit 0
%defattr(-,root,root)
%{_sbindir}/logrotate
%dir %{_sysconfdir}/logrotate.d
%{_sysconfdir}/cron.daily/logrotate
%config(noreplace) %{_sysconfdir}/logrotate.conf
%config(noreplace) %{_localstatedir}/lib/logrotate.status
%{_initrddir}/logrotate
%{_unitdir}/logrotate.service
%{_unitdir}/logrotate.timer
%{_mandir}/man5/*
%{_mandir}/man8/*
%changelog
* Fri Dec 26 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.8.8-2mamba
- systemd support
* Mon Nov 03 2014 Automatic Build System <autodist@mambasoft.it> 3.8.8-1mamba
- automatic update by autodist

11
logrotate.timer Normal file
View File

@ -0,0 +1,11 @@
[Unit]
Description=Daily rotation of log files
[Timer]
OnCalendar=daily
AccuracySec=12h
Persistent=true
Unit=timer.service
[Install]
WantedBy=multi-user.target