2007-01-15 23:51:54 +01:00
|
|
|
#
|
2008-03-15 12:00:55 +01:00
|
|
|
# spec file for package audit (Version 1.6.2)
|
2007-01-15 23:51:54 +01:00
|
|
|
#
|
2008-03-07 20:35:26 +01:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-15 23:51:54 +01:00
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
#
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-03-07 20:35:26 +01:00
|
|
|
|
2007-01-15 23:51:54 +01:00
|
|
|
Name: audit
|
2008-03-15 12:00:55 +01:00
|
|
|
BuildRequires: gcc-c++
|
2007-01-15 23:51:54 +01:00
|
|
|
Summary: User Space Tools for 2.6 Kernel Auditing
|
2008-03-15 12:00:55 +01:00
|
|
|
Version: 1.6.2
|
2008-03-19 11:57:31 +01:00
|
|
|
Release: 27
|
2007-07-12 03:01:37 +02:00
|
|
|
License: GPL v2 or later
|
2007-01-15 23:51:54 +01:00
|
|
|
Group: System/Monitoring
|
2007-10-11 18:47:28 +02:00
|
|
|
Url: http://people.redhat.com/sgrubb/audit/
|
2007-05-06 17:10:42 +02:00
|
|
|
Source0: %{name}-%{version}.tar.gz
|
2007-01-15 23:51:54 +01:00
|
|
|
Source1: auditd.init
|
|
|
|
Source2: auditd.sysconfig
|
2007-07-27 01:18:47 +02:00
|
|
|
Patch0: audit-no_sca.patch
|
|
|
|
Patch1: audit-no_python.patch
|
2008-03-15 12:00:55 +01:00
|
|
|
Patch2: audit-1.6.2-bugs.patch
|
|
|
|
Patch3: audit-startup.patch
|
2007-01-15 23:51:54 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
PreReq: %insserv_prereq %fillup_prereq
|
|
|
|
|
|
|
|
%description
|
|
|
|
The audit package contains the user space utilities for storing and
|
|
|
|
processing the audit records generated by the audit subsystem in the
|
|
|
|
Linux 2.6 kernel.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Steve Grubb <sgrubb@redhat.com>
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
Summary: Dynamic library for libaudit
|
2007-07-12 03:01:37 +02:00
|
|
|
License: GPL v2 or later
|
2007-01-15 23:51:54 +01:00
|
|
|
Group: System/Monitoring
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
The audit-libs package contains the dynamic libraries needed for
|
|
|
|
applications to use the audit framework.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Steve Grubb <sgrubb@redhat.com>
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Header files and static library for libaudit
|
2007-10-31 12:24:11 +01:00
|
|
|
License: LGPL v2.1 or later
|
2007-01-15 23:51:54 +01:00
|
|
|
Group: System/Monitoring
|
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The audit-devel package contains the static libraries and header files
|
|
|
|
needed for developing applications that need to use the audit framework
|
|
|
|
libraries.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Steve Grubb <sgrubb@redhat.com>
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch0 -p1
|
2007-07-27 01:18:47 +02:00
|
|
|
%patch1 -p1
|
2008-03-15 12:00:55 +01:00
|
|
|
%patch2 -p1
|
|
|
|
%patch3 -p1
|
2007-01-15 23:51:54 +01:00
|
|
|
|
|
|
|
%build
|
2008-03-19 11:57:31 +01:00
|
|
|
autoreconf -fi
|
2007-01-15 23:51:54 +01:00
|
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
|
|
export CXXFLAGS="$CFLAGS"
|
2007-05-06 17:10:42 +02:00
|
|
|
./configure --prefix=%{_prefix} --sbindir=/sbin --mandir=%{_mandir} --libdir=/%{_lib} --sysconfdir=/etc --libexecdir=%{_prefix}/lib/%{name} --with-apparmor
|
2008-03-15 12:00:55 +01:00
|
|
|
#./configure --prefix=%{_prefix} --sbindir=/sbin --mandir=%{_mandir} --libdir=/%{_lib} --sysconfdir=/etc --libexecdir=%{_libexecdir}
|
2007-01-15 23:51:54 +01:00
|
|
|
pushd src/mt
|
|
|
|
make libaudit.h
|
|
|
|
popd
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
2007-05-06 17:10:42 +02:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/{sbin,etc/{sysconfig,audispd/plugins.d,init.d}}
|
2007-01-15 23:51:54 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/usr/sbin
|
2008-03-15 12:00:55 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man8
|
2007-01-15 23:51:54 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_lib}/security
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_includedir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_libdir}
|
|
|
|
# We manually install this since Makefile doesn't
|
|
|
|
install -m 0644 lib/libaudit.h $RPM_BUILD_ROOT/%{_includedir}
|
|
|
|
# This winds up in the wrong place when libtool is involved
|
2007-05-06 17:10:42 +02:00
|
|
|
rm $RPM_BUILD_ROOT/%{_lib}/libaudit.so $RPM_BUILD_ROOT/%{_lib}/libauparse.so
|
2007-01-15 23:51:54 +01:00
|
|
|
ln -sf /%{_lib}/libaudit.so.0 $RPM_BUILD_ROOT%{_libdir}/libaudit.so
|
2007-05-06 17:10:42 +02:00
|
|
|
ln -sf /%{_lib}/libauparse.so.0 $RPM_BUILD_ROOT%{_libdir}/libauparse.so
|
|
|
|
mv $RPM_BUILD_ROOT/%{_lib}/libaudit.a $RPM_BUILD_ROOT/%{_lib}/libauparse.a $RPM_BUILD_ROOT%{_libdir}
|
|
|
|
rm $RPM_BUILD_ROOT/%{_lib}/libaudit.la $RPM_BUILD_ROOT/%{_lib}/libauparse.la
|
2007-01-15 23:51:54 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
|
|
|
|
cp %{SOURCE2} $RPM_BUILD_ROOT/var/adm/fillup-templates/sysconfig.auditd
|
|
|
|
# delete redhat script, use ours
|
|
|
|
rm -rf $RPM_BUILD_ROOT/etc/sysconfig/auditd
|
|
|
|
rm -rf $RPM_BUILD_ROOT/etc/init.d/auditd
|
|
|
|
rm -rf $RPM_BUILD_ROOT/etc/rc.d/init.d
|
|
|
|
install -c -m 755 %{SOURCE1} $RPM_BUILD_ROOT/etc/init.d/auditd
|
|
|
|
ln -s /etc/init.d/auditd $RPM_BUILD_ROOT/sbin/rcauditd
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/log/audit/
|
|
|
|
touch $RPM_BUILD_ROOT/var/log/audit/audit.log
|
2008-03-15 12:00:55 +01:00
|
|
|
# for %ghost below, so that old location files will still be there when
|
2007-01-15 23:51:54 +01:00
|
|
|
# %post copy runs
|
|
|
|
touch $RPM_BUILD_ROOT/etc/{auditd.conf,audit.rules}
|
2007-05-06 17:10:42 +02:00
|
|
|
# On platforms with 32 & 64 bit libs, we need to coordinate the timestamp
|
|
|
|
touch -r ./audit.spec $RPM_BUILD_ROOT/etc/libaudit.conf
|
2008-03-15 12:00:55 +01:00
|
|
|
# Remove the plugin stuff for now
|
|
|
|
rm -f $RPM_BUILD_ROOT/etc/audisp/plugins.d/au-ids.conf
|
|
|
|
rm -f $RPM_BUILD_ROOT/etc/audisp/plugins.d/remote.conf
|
|
|
|
rm -f $RPM_BUILD_ROOT/sbin/audisp-ids
|
2007-01-15 23:51:54 +01:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%post
|
|
|
|
%{fillup_and_insserv -yn auditd auditd}
|
|
|
|
# Save existing audit files if any (from old location)
|
|
|
|
if [ -f /etc/auditd.conf ]; then
|
|
|
|
mv /etc/audit/auditd.conf /etc/audit/auditd.conf.new
|
|
|
|
mv /etc/auditd.conf /etc/audit/auditd.conf
|
|
|
|
fi
|
|
|
|
if [ -f /etc/audit.rules ]; then
|
|
|
|
mv /etc/audit/audit.rules /etc/audit/audit.rules.new
|
|
|
|
mv /etc/audit.rules /etc/audit/audit.rules
|
|
|
|
fi
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%stop_on_removal auditd
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%restart_on_update auditd
|
|
|
|
%{insserv_cleanup}
|
|
|
|
|
|
|
|
%files libs
|
|
|
|
%defattr(-,root,root)
|
|
|
|
/%{_lib}/libaudit.*
|
2007-05-06 17:10:42 +02:00
|
|
|
/%{_lib}/libauparse.*
|
2007-01-15 23:51:54 +01:00
|
|
|
%config(noreplace) %attr(640,root,root) /etc/libaudit.conf
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libaudit.*
|
2007-05-06 17:10:42 +02:00
|
|
|
%{_libdir}/libauparse.*
|
2007-01-15 23:51:54 +01:00
|
|
|
%{_includedir}/libaudit.h
|
2007-05-06 17:10:42 +02:00
|
|
|
%{_includedir}/auparse.h
|
|
|
|
%{_includedir}/auparse-defs.h
|
2007-01-15 23:51:54 +01:00
|
|
|
%{_mandir}/man3/*
|
2008-03-15 12:00:55 +01:00
|
|
|
%doc contrib/skeleton.c contrib/plugin
|
2007-01-15 23:51:54 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2008-03-15 12:00:55 +01:00
|
|
|
%doc README COPYING ChangeLog contrib/capp.rules contrib/nispom.rules contrib/lspp.rules contrib/skeleton.c init.d/auditd.cron
|
|
|
|
%{_mandir}/man8/*
|
|
|
|
%{_mandir}/man5/*
|
2007-01-15 23:51:54 +01:00
|
|
|
%attr(750,root,root) /sbin/auditctl
|
|
|
|
%attr(750,root,root) /sbin/auditd
|
2007-05-06 17:10:42 +02:00
|
|
|
%attr(755,root,root) /sbin/ausearch
|
2007-01-15 23:51:54 +01:00
|
|
|
%attr(750,root,root) /sbin/rcauditd
|
|
|
|
%attr(750,root,root) /sbin/autrace
|
2007-05-06 17:10:42 +02:00
|
|
|
%attr(750,root,root) /sbin/audispd
|
|
|
|
%attr(755,root,root) /sbin/aureport
|
2007-01-15 23:51:54 +01:00
|
|
|
/etc/init.d/auditd
|
|
|
|
%dir %attr(750,root,root) /etc/audit
|
2007-10-11 18:47:28 +02:00
|
|
|
%attr(750,root,root) %dir /etc/audisp
|
|
|
|
%attr(750,root,root) %dir /etc/audisp/plugins.d
|
2008-03-15 12:00:55 +01:00
|
|
|
%attr(640,root,root) /etc/audisp/plugins.d/af_unix.conf
|
|
|
|
%attr(640,root,root) /etc/audisp/plugins.d/syslog.conf
|
2007-01-15 23:51:54 +01:00
|
|
|
%ghost /etc/auditd.conf
|
|
|
|
%ghost /etc/audit.rules
|
|
|
|
%config(noreplace) %attr(640,root,root) /etc/audit/auditd.conf
|
|
|
|
%config(noreplace) %attr(640,root,root) /etc/audit/audit.rules
|
2007-10-11 18:47:28 +02:00
|
|
|
%config(noreplace) %attr(640,root,root) /etc/audisp/audispd.conf
|
2007-01-15 23:51:54 +01:00
|
|
|
/var/adm/fillup-templates/sysconfig.auditd
|
|
|
|
%dir %attr(700,root,root) /var/log/audit
|
2007-07-12 03:01:37 +02:00
|
|
|
%ghost %config(noreplace) /var/log/audit/audit.log
|
2008-03-07 20:35:26 +01:00
|
|
|
|
2007-05-06 17:10:42 +02:00
|
|
|
%changelog
|
2008-03-19 11:57:31 +01:00
|
|
|
* Tue Mar 18 2008 schwab@suse.de
|
|
|
|
- Use autoreconf.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Oct 31 2007 tonyj@suse.de
|
2007-10-31 12:24:11 +01:00
|
|
|
- Incorporate 1 more Redhat fixe post 1.6.2
|
|
|
|
- Go back to 10.2 behaviour wrt to starting in disabled state.
|
|
|
|
This time using patch submitted upstream, fix for #Bug 333739
|
2008-03-07 20:35:26 +01:00
|
|
|
* Thu Oct 11 2007 tonyj@suse.de
|
2007-10-11 18:47:28 +02:00
|
|
|
- Upgrade to 1.6.2
|
|
|
|
Plus two bugs discovered in Fedora, will be fixed in 1.6.3
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Jul 25 2007 tonyj@suse.de
|
2007-07-27 01:18:47 +02:00
|
|
|
- Upgrade to 1.5.5
|
|
|
|
Correct bug in audit_make_equivalent function (Al Viro)
|
|
|
|
Local: add AppArmor audit ID (upstream in 1.5.6)
|
|
|
|
don't build RedHat system-config-audit
|
2008-03-07 20:35:26 +01:00
|
|
|
* Thu Jul 12 2007 tonyj@suse.de
|
2007-07-12 03:01:37 +02:00
|
|
|
- Upgrade to 1.5.4
|
|
|
|
Add feed interface to auparse library (John Dennis)
|
|
|
|
Apply patch to libauparse for unresolved symbols (#241178)
|
|
|
|
Apply patch to add line numbers for file events in libauparse (John Dennis)
|
|
|
|
Change seresults to seresult in libauparse (John Dennis)
|
|
|
|
Add unit32_t definition to swig (#244210)
|
|
|
|
Add support for directory auditing
|
|
|
|
Update acct field to be escaped
|
|
|
|
- Fix for #280487 "%%ghost /var/log/audit/audit.log will remove the logfile"
|
2008-03-07 20:35:26 +01:00
|
|
|
* Mon May 07 2007 rguenther@suse.de
|
2007-05-09 00:57:25 +02:00
|
|
|
- Drop pkg-config BuildRequires introduced by last change.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed May 02 2007 tonyj@suse.de
|
2007-05-06 17:10:42 +02:00
|
|
|
- Upgrade to 1.5.3. Drop AUDITD_DISABLE_CONTEXTS from audit sysconfig
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Nov 29 2006 tonyj@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgrade to 1.2.9 (drop several patches which are now upstream)
|
|
|
|
- Move to using /etc/audit directory for config files
|
2008-03-07 20:35:26 +01:00
|
|
|
* Thu Aug 31 2006 tonyj@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgrade to 1.2.6-1
|
2008-03-07 20:35:26 +01:00
|
|
|
* Sat Aug 26 2006 olh@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- do not define __KERNEL__ in userland apps
|
|
|
|
- remove unused sys/syscall.h include
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Aug 16 2006 cthiel@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- split audit into audit and audit-libs-python
|
2008-03-07 20:35:26 +01:00
|
|
|
* Fri May 05 2006 sbeattie@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- disable syscall audit context creation by default #172154
|
2008-03-07 20:35:26 +01:00
|
|
|
* Mon Mar 20 2006 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Do not print a misleading errormessage when audit
|
|
|
|
is not compiled into the kernel. #152733
|
2008-03-07 20:35:26 +01:00
|
|
|
* Mon Mar 06 2006 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- On kernels without auditing, which report ECONNREFUSED,
|
|
|
|
do not output stuff to stderr on startup. #152733
|
2008-03-07 20:35:26 +01:00
|
|
|
* Sat Feb 25 2006 kukuk@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Fix moving of devel libraries, don't install .la file
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Feb 22 2006 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- moved libaudit.so symlink to /usr/lib and to -devel package,
|
|
|
|
as requested by Thorsten.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Fri Feb 17 2006 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- check sendto() return against -1 (error with errno set).
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Jan 25 2006 ro@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- fix fillup call since filename != packagename
|
2008-03-07 20:35:26 +01:00
|
|
|
* Tue Jan 24 2006 ro@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- do not skip fillup in postinstall
|
2008-03-07 20:35:26 +01:00
|
|
|
* Mon Jan 23 2006 dreynolds@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Modified inssrv macro args to enable on boot
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Jan 18 2006 tonyj@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Add support for AppArmor (submitted upstream for 1.1.4)
|
2008-03-07 20:35:26 +01:00
|
|
|
* Fri Jan 13 2006 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Updated to 1.1.3.
|
|
|
|
- Moved audispd to /usr/sbin since it uses /usr/lib/libstdc++
|
|
|
|
- Updated sysconfig snippet.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Tue Nov 08 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- upgraded to 1.0.12.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Fri Nov 04 2005 kukuk@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Update to 1.0.9.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Oct 12 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- upgraded to 1.0.6. ptrdift patch now solved upstream.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Oct 05 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 1.0.5
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Oct 05 2005 dmueller@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- add norootforbuild
|
2008-03-07 20:35:26 +01:00
|
|
|
* Mon Sep 26 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 1.0.4.
|
|
|
|
- Make rate & backlog 32 bit unsigned int in auditctl
|
|
|
|
- In auditctl, if -F arch is given with -t option, don't require list
|
|
|
|
- Update auditd man page
|
|
|
|
- Add size check to audit_send
|
|
|
|
- Update message for audit_open failure when kernel doesn't support audit
|
2008-03-07 20:35:26 +01:00
|
|
|
* Tue Aug 23 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 1.0.3 bugfix release:
|
|
|
|
- adjust file perms of newly created log file in auditd
|
|
|
|
- fix 2 memory leaks and an out of bounds access in auditd
|
|
|
|
- fix case where auditd was closing netlink descriptor too early
|
|
|
|
- fix watch rules not to take field arguments in auditctl
|
|
|
|
- fix bug where inode, devmajor, devminor, exit, and success fields in auditctl
|
|
|
|
rules were not getting the correct value stored
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Aug 17 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Added /var/log/audit directory and ghost audit.log #105131
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Aug 10 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 1.0.2
|
2008-03-07 20:35:26 +01:00
|
|
|
* Thu Aug 04 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 1.0.1.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Mon Jul 11 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Update to version 0.9.16.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Tue Jun 21 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Update to version 0.9.10.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Fri Jun 17 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Update to version 0.9.7.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Thu Jun 16 2005 kukuk@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Update to version 0.9.5
|
2008-03-07 20:35:26 +01:00
|
|
|
* Tue Jun 14 2005 ro@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- make it build with current includes
|
2008-03-07 20:35:26 +01:00
|
|
|
* Tue May 31 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 0.9.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Fri May 13 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- upgraded to 0.6.8
|
2008-03-07 20:35:26 +01:00
|
|
|
* Tue Apr 19 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 0.6.11.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Fri Apr 15 2005 pth@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Make libaudit.h define pgoff_t by itself.
|
|
|
|
- Fix a minor warning.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Wed Mar 30 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 0.6.9.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Fri Mar 04 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- Upgraded to 0.6.5.
|
2008-03-07 20:35:26 +01:00
|
|
|
* Thu Mar 03 2005 meissner@suse.de
|
2007-01-15 23:51:54 +01:00
|
|
|
- initial package of auditd for new kernel auditing system.
|