Introduce systemd unit file, drop SysV support
This commit is contained in:
parent
e7ff0d2294
commit
8b5d586a4b
41
audit.spec
41
audit.spec
@ -3,19 +3,23 @@
|
|||||||
Summary: User space tools for 2.6 kernel auditing
|
Summary: User space tools for 2.6 kernel auditing
|
||||||
Name: audit
|
Name: audit
|
||||||
Version: 2.1.2
|
Version: 2.1.2
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
URL: http://people.redhat.com/sgrubb/audit/
|
URL: http://people.redhat.com/sgrubb/audit/
|
||||||
Source0: http://people.redhat.com/sgrubb/audit/%{name}-%{version}.tar.gz
|
Source0: http://people.redhat.com/sgrubb/audit/%{name}-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
Source1: auditd.service
|
||||||
BuildRequires: swig python-devel
|
BuildRequires: swig python-devel
|
||||||
BuildRequires: tcp_wrappers-devel libcap-ng-devel
|
BuildRequires: tcp_wrappers-devel libcap-ng-devel
|
||||||
BuildRequires: autoconf automake libtool
|
BuildRequires: autoconf automake libtool
|
||||||
|
BuildRequires: systemd-units
|
||||||
BuildRequires: kernel-headers >= 2.6.29
|
BuildRequires: kernel-headers >= 2.6.29
|
||||||
Requires: %{name}-libs = %{version}-%{release}
|
Requires: %{name}-libs = %{version}-%{release}
|
||||||
Requires: chkconfig
|
Requires(post): systemd-units systemd-sysv chkconfig coreutils
|
||||||
Requires(pre): coreutils
|
Requires(preun): systemd-units
|
||||||
|
Requires(postun): systemd-units coreutils
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The audit package contains the user space utilities for
|
The audit package contains the user space utilities for
|
||||||
@ -89,7 +93,7 @@ make %{?_smp_mflags}
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
mkdir -p $RPM_BUILD_ROOT/{sbin,etc/{sysconfig,audispd/plugins.d,rc.d/init.d}}
|
mkdir -p $RPM_BUILD_ROOT/{sbin,etc/{sysconfig,audispd/plugins.d}}
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/{man5,man8}
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/{man5,man8}
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_lib}
|
mkdir -p $RPM_BUILD_ROOT/%{_lib}
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/audit
|
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/audit
|
||||||
@ -125,6 +129,11 @@ touch -r ./audit.spec $RPM_BUILD_ROOT/etc/libaudit.conf
|
|||||||
touch -r ./audit.spec $RPM_BUILD_ROOT/usr/share/man/man5/libaudit.conf.5.gz
|
touch -r ./audit.spec $RPM_BUILD_ROOT/usr/share/man/man5/libaudit.conf.5.gz
|
||||||
|
|
||||||
%ifnarch ppc ppc64
|
%ifnarch ppc ppc64
|
||||||
|
# Systemd
|
||||||
|
mkdir -p %{buildroot}%{_unitdir}
|
||||||
|
install -m644 %{SOURCE1} %{buildroot}%{_unitdir}
|
||||||
|
rm -rf %{buildroot}%{_initrddir}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make check
|
make check
|
||||||
%endif
|
%endif
|
||||||
@ -135,22 +144,29 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%post libs -p /sbin/ldconfig
|
%post libs -p /sbin/ldconfig
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/chkconfig --add auditd
|
if [ $1 -eq 1 ] ; then
|
||||||
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
||||||
|
fi
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
if [ $1 -eq 0 ]; then
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
||||||
/sbin/service auditd stop > /dev/null 2>&1
|
if [ $1 -ge 1 ] ; then
|
||||||
/sbin/chkconfig --del auditd
|
/bin/systemctl try-restart auditd.service >/dev/null 2>&1 || :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%postun libs -p /sbin/ldconfig
|
%postun libs -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
if [ $1 -ge 1 ]; then
|
if [ $1 = 0 ]; then
|
||||||
/sbin/service auditd condrestart > /dev/null 2>&1 || :
|
/bin/systemctl --no-reload auditd.service > /dev/null 2>&1 || :
|
||||||
|
/bin/systemctl stop auditd.service > /dev/null 2>&1 || :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%files libs
|
%files libs
|
||||||
|
%triggerun -- audit < 2.1.2-2
|
||||||
|
/sbin/chkconfig --del auditd >/dev/null 2>&1 || :
|
||||||
|
/bin/systemctl try-restart auditd.service >/dev/null 2>&1 || :
|
||||||
|
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%attr(755,root,root) /%{_lib}/libaudit.so.1*
|
%attr(755,root,root) /%{_lib}/libaudit.so.1*
|
||||||
%attr(755,root,root) /%{_lib}/libauparse.*
|
%attr(755,root,root) /%{_lib}/libauparse.*
|
||||||
@ -203,7 +219,7 @@ fi
|
|||||||
%attr(755,root,root) %{_bindir}/aulast
|
%attr(755,root,root) %{_bindir}/aulast
|
||||||
%attr(755,root,root) %{_bindir}/aulastlog
|
%attr(755,root,root) %{_bindir}/aulastlog
|
||||||
%attr(755,root,root) %{_bindir}/ausyscall
|
%attr(755,root,root) %{_bindir}/ausyscall
|
||||||
%attr(755,root,root) /etc/rc.d/init.d/auditd
|
%{_unitdir}/auditd.service
|
||||||
%attr(750,root,root) %dir %{_var}/log/audit
|
%attr(750,root,root) %dir %{_var}/log/audit
|
||||||
%attr(750,root,root) %dir /etc/audit
|
%attr(750,root,root) %dir /etc/audit
|
||||||
%attr(750,root,root) %dir /etc/audisp
|
%attr(750,root,root) %dir /etc/audisp
|
||||||
@ -236,6 +252,9 @@ fi
|
|||||||
%attr(644,root,root) %{_mandir}/man8/audisp-remote.8.gz
|
%attr(644,root,root) %{_mandir}/man8/audisp-remote.8.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 26 2011 Jóhann B. Guðmundsson <johannbg@gmail.com> - 2.1.2-2
|
||||||
|
- Introduce systemd unit file, drop SysV support
|
||||||
|
|
||||||
* Sat Jun 11 2011 Steve Grubb <sgrubb@redhat.com> 2.1.2-1
|
* Sat Jun 11 2011 Steve Grubb <sgrubb@redhat.com> 2.1.2-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
|
11
auditd.service
Normal file
11
auditd.service
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Security Auditing Service
|
||||||
|
After=syslog.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=/sbin/auditd -n
|
||||||
|
ExecStartPost=/sbin/auditctl -R /etc/audit/audit.rules
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
|
Loading…
Reference in New Issue
Block a user