Steve Grubb 654a5c
Summary: User space tools for 2.6 kernel auditing.
cvsdist 2c6ba5
Name: audit
Steve Grubb 1be66f
Version: 0.9.18
Steve Grubb 161141
Release: 1
cvsdist 2c6ba5
License: GPL
Steve Grubb 654a5c
Group: System Environment/Daemons
Steve Grubb c5201d
URL: http://people.redhat.com/sgrubb/audit/
cvsdist 2c6ba5
Source0: %{name}-%{version}.tar.gz
Steve Grubb 654a5c
BuildRoot: %{_tmppath}/%{name}-%{version}-root
Steve Grubb 57646a
BuildRequires: libtool
Steve Grubb 161141
BuildRequires: glibc-kernheaders >= 2.4-9.1.95
Steve Grubb 8fd9fa
BuildRequires: automake >= 1.9
Steve Grubb 8fd9fa
BuildRequires: autoconf >= 2.59
Steve Grubb 75f480
Requires: %{name}-libs = %{version}-%{release}
Steve Grubb c5201d
Requires: chkconfig
cvsdist 2c6ba5
cvsdist 2c6ba5
%description
cvsdist 2c6ba5
The audit package contains the user space utilities for
cvsdist 2c6ba5
storing and processing the audit records generate by
cvsdist 2c6ba5
the audit subsystem in the Linux 2.6 kernel.
cvsdist 2c6ba5
Steve Grubb 75f480
%package libs
Steve Grubb 75f480
Summary: Dynamic library for libaudit
Steve Grubb c5201d
License: LGPL
Steve Grubb c5201d
Group: Development/Libraries
Steve Grubb c5201d
Steve Grubb 75f480
%description libs
Steve Grubb 75f480
The audit-libs package contains the dynamic libraries needed for 
Steve Grubb 75f480
applications to use the audit framework.
Steve Grubb 75f480
Steve Grubb 75f480
%package libs-devel
Steve Grubb 75f480
Summary: Header files and static library for libaudit
Steve Grubb 75f480
License: LGPL
Steve Grubb 75f480
Group: Development/Libraries
Steve Grubb 75f480
Requires: %{name}-libs = %{version}-%{release}
Steve Grubb 7dfa20
Requires: glibc-kernheaders >= 2.4-9.1.95
Steve Grubb 75f480
Steve Grubb 75f480
%description libs-devel
Steve Grubb 75f480
The audit-libs-devel package contains the static libraries and header 
Steve Grubb 75f480
files needed for developing applications that need to use the audit 
Steve Grubb 75f480
framework libraries.
Steve Grubb c5201d
cvsdist 2c6ba5
%prep
cvsdist 2c6ba5
%setup -q
cvsdist 2c6ba5
cvsdist 2c6ba5
%build
Steve Grubb 654a5c
autoreconf -fv --install
Steve Grubb 56b158
export CFLAGS="$RPM_OPT_FLAGS"
Steve Grubb 57646a
./configure --sbindir=/sbin --mandir=%{_mandir} --libdir=/%{_lib}
cvsdist 2c6ba5
make
cvsdist 2c6ba5
cvsdist 2c6ba5
%install
cvsdist 2c6ba5
rm -rf $RPM_BUILD_ROOT
Steve Grubb 654a5c
mkdir -p $RPM_BUILD_ROOT/{sbin,etc/{sysconfig,rc.d/init.d}}
Steve Grubb 654a5c
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man8
Steve Grubb 57646a
mkdir -p $RPM_BUILD_ROOT/%{_lib}
Steve Grubb d1e22d
mkdir -p $RPM_BUILD_ROOT/%{_var}/log/audit
Steve Grubb 654a5c
make DESTDIR=$RPM_BUILD_ROOT install
cvsdist 2c6ba5
Steve Grubb c5201d
mkdir -p $RPM_BUILD_ROOT/%{_includedir}
Steve Grubb c5201d
mkdir -p $RPM_BUILD_ROOT/%{_libdir}
Steve Grubb aad931
# We manually install this since Makefile doesn't
Steve Grubb c5201d
install -m 0644 lib/libaudit.h $RPM_BUILD_ROOT/%{_includedir}
Steve Grubb aad931
# This winds up in the wrong place when libtool is involved
Steve Grubb 19531f
mv $RPM_BUILD_ROOT/%{_lib}/libaudit.a $RPM_BUILD_ROOT%{_libdir}
Steve Grubb 21c8b7
curdir=`pwd`
Steve Grubb 21c8b7
cd $RPM_BUILD_ROOT/%{_libdir}
Steve Grubb 21c8b7
ln -s ../../%{_lib}/libaudit.so libaudit.so
Steve Grubb 21c8b7
cd $curdir
Steve Grubb 64cb26
# Remove these items so they don't get picked up.
Steve Grubb 64cb26
rm -f $RPM_BUILD_ROOT/%{_lib}/libaudit.so
Steve Grubb 64cb26
rm -f $RPM_BUILD_ROOT/%{_lib}/libaudit.la
Steve Grubb 21c8b7
cvsdist 2c6ba5
%clean
cvsdist 2c6ba5
rm -rf $RPM_BUILD_ROOT
cvsdist 2c6ba5
Steve Grubb 7a408f
%post libs -p /sbin/ldconfig
Steve Grubb 75f480
Steve Grubb c5201d
%post
Steve Grubb 7c0633
/sbin/chkconfig --add auditd
Steve Grubb c5201d
Steve Grubb c5201d
%preun
Steve Grubb 1be66f
if [ $1 -eq 0 ]; then
Steve Grubb c5201d
   /sbin/service auditd stop > /dev/null 2>&1
Steve Grubb c5201d
   /sbin/chkconfig --del auditd
Steve Grubb c5201d
fi
Steve Grubb c5201d
Steve Grubb 75f480
%postun libs
Steve Grubb 75f480
/sbin/ldconfig 2>/dev/null
Steve Grubb 75f480
Steve Grubb c5201d
%postun
Steve Grubb c5201d
if [ $1 -ge 1 ]; then
Steve Grubb c5201d
   /sbin/service auditd condrestart > /dev/null 2>&1
Steve Grubb c5201d
fi
Steve Grubb c5201d
Steve Grubb 75f480
%files libs
Steve Grubb 75f480
%defattr(-,root,root)
Steve Grubb 19531f
%attr(755,root,root) /%{_lib}/libaudit.*
Steve Grubb 75f480
Steve Grubb 75f480
%files libs-devel
Steve Grubb c5201d
%defattr(-,root,root)
Steve Grubb 21c8b7
%{_libdir}/libaudit.a
Steve Grubb 21c8b7
%{_libdir}/libaudit.so
Steve Grubb c5201d
%{_includedir}/libaudit.h
Steve Grubb 72b129
%{_mandir}/man3/*
Steve Grubb c5201d
cvsdist 2c6ba5
%files
cvsdist 2c6ba5
%defattr(-,root,root,-)
Steve Grubb 78412f
%doc README COPYING ChangeLog sample.rules
Steve Grubb 654a5c
%attr(0644,root,root) %{_mandir}/man8/*
Steve Grubb d1e22d
%attr(750,root,root)  /sbin/auditctl
Steve Grubb d1e22d
%attr(750,root,root)  /sbin/auditd
Steve Grubb e7cf97
%attr(750,root,root) /sbin/ausearch
Steve Grubb 7a408f
%attr(750,root,root) /sbin/autrace
Steve Grubb 654a5c
%attr(755,root,root) /etc/rc.d/init.d/auditd
Steve Grubb d1e22d
%attr(750,root,root) %{_var}/log/audit
Steve Grubb 01be97
%config(noreplace) %attr(640,root,root) /etc/auditd.conf
Steve Grubb 8fd9fa
%config(noreplace) %attr(640,root,root) /etc/audit.rules
Steve Grubb 654a5c
%config(noreplace) %attr(640,root,root) /etc/sysconfig/auditd
Steve Grubb 654a5c
cvsdist 2c6ba5
cvsdist 2c6ba5
%changelog
Steve Grubb 1be66f
* Thu Jul 14 2005 Steve Grubb <sgrubb@redhat.com> 0.9.18-1
Steve Grubb 1be66f
- auditd message formatter use MAX_AUDIT_MESSAGE_LENGTH to prevent clipping
Steve Grubb 1be66f
Steve Grubb 7c0633
* Tue Jul 12 2005 Steve Grubb <sgrubb@redhat.com> 0.9.17-1
Steve Grubb 7c0633
- Fix ausearch buffers to hold long filenames
Steve Grubb 7c0633
- Make a0 long long for 64 bit kernels & 32 bit ausearch.
Steve Grubb 7c0633
Steve Grubb 7dfa20
* Thu Jul 07 2005 Steve Grubb <sgrubb@redhat.com> 0.9.16-1
Steve Grubb 7dfa20
- Adjust umask
Steve Grubb 7dfa20
- Adjust length of strings for file system watches to not include NUL
Steve Grubb 7dfa20
- Remove extra error message from audit_send
Steve Grubb 7dfa20
Steve Grubb 3fa19c
* Tue Jun 27 2005 Steve Grubb <sgrubb@redhat.com> 0.9.15-1
Steve Grubb 3fa19c
- Update log rotation handling to be more robust
Steve Grubb 3fa19c
Steve Grubb 7e2f16
* Fri Jun 24 2005 Steve Grubb <sgrubb@redhat.com> 0.9.14-1
Steve Grubb 7e2f16
- make auditctl -s work again
Steve Grubb 7e2f16
- make AUDITD_CLEAN_STOP test in init scripts case insensitive
Steve Grubb 7e2f16
Steve Grubb 64cb26
* Thu Jun 23 2005 Steve Grubb <sgrubb@redhat.com> 0.9.13-1
Steve Grubb 64cb26
- Remove /lib/libaudit.so & .la from audit-libs package
Steve Grubb 64cb26
- In auditctl, if syscall not given, default to all
Steve Grubb 64cb26
Steve Grubb 812847
* Wed Jun 22 2005 Steve Grubb <sgrubb@redhat.com> 0.9.12-1
Steve Grubb 812847
- Add some syslog messages for a couple exits
Steve Grubb 812847
- Add some unlinks of the pid file in a couple error exits
Steve Grubb 812847
- Make some options of auditctl not expect a reply
Steve Grubb 812847
- Update support for user and watch filter lists
Steve Grubb 812847
Steve Grubb 7956d8
* Tue Jun 21 2005 Steve Grubb <sgrubb@redhat.com> 0.9.11-1
Steve Grubb 7956d8
- Change packet draining to nonblocking
Steve Grubb 7956d8
- Interpret id field in ausearch
Steve Grubb 7956d8
- Add error message if not able to create log
Steve Grubb 7956d8
- Ignore netlink acks when asking for rule & watch list
Steve Grubb 7956d8
Steve Grubb 7956d8
* Mon Jun 20 2005 Steve Grubb <sgrubb@redhat.com> 0.9.10-1
Steve Grubb 5a02a7
- Make sure the bad packet is drained when retrying user messages
Steve Grubb 5a02a7
- Add support for new user and watch filter lists
Steve Grubb 5a02a7
- Interpret flags field in ausearch
Steve Grubb 5a02a7
Steve Grubb 1deb78
* Sun Jun 19 2005 Steve Grubb <sgrubb@redhat.com> 0.9.9-1
Steve Grubb 1deb78
- Fix user messages for people with older kernels
Steve Grubb 1deb78
Steve Grubb b87507
* Fri Jun 17 2005 Steve Grubb <sgrubb@redhat.com> 0.9.8-1
Steve Grubb b87507
- Added support for FS_INODE and USYS_CONFIG records
Steve Grubb b87507
- More cleanup of user space message functions
Steve Grubb b87507
Steve Grubb 34e0a7
* Thu Jun 16 2005 Steve Grubb <sgrubb@redhat.com> 0.9.7-1
Steve Grubb 34e0a7
- fixed bug in send_user_message which errored on pam logins
Steve Grubb 34e0a7
- Change nanosleeps over to select loops
Steve Grubb 34e0a7
- Change the 'e' option to auditctl -p to 'x'
Steve Grubb 34e0a7
Steve Grubb a2197e
* Thu Jun 16 2005 Steve Grubb <sgrubb@redhat.com> 0.9.6-1
Steve Grubb a2197e
- fix bug in incremental flush where is wrongly reported an error
Steve Grubb a2197e
- ausearch should not do uid check for -if option
Steve Grubb a2197e
- adjust ipc interpretation to not use ipc.h
Steve Grubb a2197e
Steve Grubb 8d45b1
* Tue Jun 14 2005 Steve Grubb <sgrubb@redhat.com> 0.9.5-1
Steve Grubb 8d45b1
- interpret socketcall & ipc based on a0 in ausearch
Steve Grubb 8d45b1
- change call sequence to make user space messages faster
Steve Grubb 8d45b1
- update return val for auditctl
Steve Grubb 8d45b1
Steve Grubb 04d851
* Sat Jun 11 2005 Steve Grubb <sgrubb@redhat.com> 0.9.4-1
Steve Grubb 04d851
- Rule and watch insert no longer automatically dumps list
Steve Grubb 04d851
- auditctl rules can now use auid instead of loginuid
Steve Grubb 04d851
- Add sighup support for daemon reconfiguration
Steve Grubb 04d851
- Move some functions into private.h
Steve Grubb 04d851
Steve Grubb 71645f
* Thu Jun 9 2005 Steve Grubb <sgrubb@redhat.com> 0.9.3-1
Steve Grubb 71645f
- Change filename handling to use linked list in ausearch
Steve Grubb 71645f
- Add man pages for audit_setloginuid & audit_getloginuid
Steve Grubb 71645f
- Fix problem where you couldn't set rule on unset loginuid's
Steve Grubb 71645f
- Adjust memory management for sighup needs
Steve Grubb 71645f
- Fix problem where netlink timeout counter wasn't being reset
Steve Grubb 71645f
Steve Grubb 161141
* Thu Jun 2 2005 Steve Grubb <sgrubb@redhat.com> 0.9.2-1
Steve Grubb 161141
- Step up to new glibc-kernheaders
Steve Grubb 161141
Steve Grubb 161141
* Thu Jun 2 2005 Steve Grubb <sgrubb@redhat.com> 0.9.1-1
Steve Grubb 161141
- AUDITD_CLEAN_STOP config option in /etc/sysconfig/auditd
Steve Grubb 161141
- When unknown, show raw record in ausearch.
Steve Grubb 161141
- Add CWD message type support
Steve Grubb 161141
Steve Grubb 161141
* Wed May 25 2005 Steve Grubb <sgrubb@redhat.com> 0.9-1
Steve Grubb 161141
- Translate numeric info to human readable for ausearch output
Steve Grubb 161141
- add '-if' option to ausearch to select input file
Steve Grubb 161141
- add '-c' option to ausearch to allow searching by comm field
Steve Grubb 161141
- init script now deletes all rules when daemon stops
Steve Grubb 161141
- Make auditctl display perms correctly in watch listings
Steve Grubb 161141
- Make auditctl -D remove all watches
Steve Grubb 161141
Steve Grubb 5e8f09
* Thu May 20 2005 Steve Grubb <sgrubb@redhat.com> 0.8.2-1
Steve Grubb 5e8f09
- Update documentation
Steve Grubb 5e8f09
- Handle user space audit events in more uniform way
Steve Grubb 5e8f09
- Update all parsers for more robustness with new kernel changes
Steve Grubb 5e8f09
- Create quiet mode for error messages
Steve Grubb 5e8f09
- Make rotated logs readonly
Steve Grubb 5e8f09
Steve Grubb 3dd7e6
* Tue May 17 2005 Steve Grubb <sgrubb@redhat.com> 0.8.1-1
Steve Grubb 3dd7e6
- Fix code to "or" uid  & gid checks for ausearch -ua & -ga
Steve Grubb 3dd7e6
- Change msg() to audit_msg() to avoid conflicts
Steve Grubb 3dd7e6
- Parse socket messages for hostname in ausearch
Steve Grubb 3dd7e6
Steve Grubb 3dd7e6
* Thu May 12 2005 Steve Grubb <sgrubb@redhat.com> 0.8-1
Steve Grubb 3dd7e6
- ausearch fix bugs related to -f & -x
Steve Grubb 3dd7e6
- Parse messages using new types
Steve Grubb 3dd7e6
- Properly unescape filenames
Steve Grubb 3dd7e6
- Update interface for sending userspace messages to use more types
Steve Grubb 3dd7e6
Steve Grubb d50bbf
* Sun May 08 2005 Steve Grubb <sgrubb@redhat.com> 0.7.4-1
Steve Grubb d50bbf
- Make sure ausearch ts & te obey DST.
Steve Grubb d50bbf
- Code cleanups to make file system watches work correctly
Steve Grubb d50bbf
Steve Grubb 2aa10d
* Tue May 03 2005 Steve Grubb <sgrubb@redhat.com> 0.7.3-1
Steve Grubb 2aa10d
- Add code to get watch list to auditctl
Steve Grubb 2aa10d
- Get -f & -hn working in ausearch
Steve Grubb 2aa10d
- Added search by terminal, exe, and syscall to ausearch program
Steve Grubb 2aa10d
- Added -w parameter to match whole word in ausearch
Steve Grubb 2aa10d
Steve Grubb ab03ec
* Wed Apr 27 2005 Steve Grubb <sgrubb@redhat.com> 0.7.2-1
Steve Grubb ab03ec
- Allow ausearch uid & gid to be non-numeric (root, wheel, etc)
Steve Grubb ab03ec
- Fix problems with changing run level
Steve Grubb ab03ec
- Added new code for logging shutdown reason credentials
Steve Grubb ab03ec
- Update DAEMON messages to use better timestamp
Steve Grubb ab03ec
Steve Grubb c49002
* Sun Apr 24 2005 Steve Grubb <sgrubb@redhat.com> 0.7.1-1
Steve Grubb c49002
- Make sure time calc is done using localtime
Steve Grubb c49002
- Raise rlimits for file size & cpu usage
Steve Grubb c49002
- Added new disk_error_action config item to auditd.conf
Steve Grubb c49002
- Rework memory management of event buffer
Steve Grubb c49002
- Handled all errors in event logging thread
Steve Grubb c49002
Steve Grubb e7cf97
* Sat Apr 23 2005 Steve Grubb <sgrubb@redhat.com> 0.7-1
Steve Grubb e7cf97
- In auditctl -l, loop until all rules are printed
Steve Grubb e7cf97
- Update autrace not to run if rules are currently loaded
Steve Grubb e7cf97
- Added code to switch to single user mode when disk is full
Steve Grubb e7cf97
- Added the ausearch program
Steve Grubb e7cf97
Steve Grubb 7a408f
* Wed Apr 20 2005 Steve Grubb <sgrubb@redhat.com> 0.6.12-1
Steve Grubb 7a408f
- Fixed bug where elf type wasn't being set when given numerically
Steve Grubb 7a408f
- Added autrace program (similar to strace)
Steve Grubb 7a408f
- Fixed bug when logs = 2 and ROTATE is the action, only 1 log resulted
Steve Grubb 7a408f
Steve Grubb d236fb
* Mon Apr 18 2005 Steve Grubb <sgrubb@redhat.com> 0.6.11-1
Steve Grubb d236fb
- Check log file size on start up
Steve Grubb d236fb
- Added priority_boost config item
Steve Grubb d236fb
- Reworked arch support
Steve Grubb d236fb
- Reworked how run level is changed
Steve Grubb d236fb
- Make allowances for ECONNREFUSED
Steve Grubb d236fb
Steve Grubb d1e22d
* Fri Apr  1 2005 Steve Grubb <sgrubb@redhat.com> 0.6.10-1
Steve Grubb d1e22d
- Code cleanups
Steve Grubb d1e22d
- Support the arch field for auditctl
Steve Grubb d1e22d
- Add version to auditctl
Steve Grubb d1e22d
- Documentation updates
Steve Grubb d1e22d
- Moved default location of the audit log to /var/log/audit
Steve Grubb ffb490
Steve Grubb 518797
* Thu Mar 17 2005 Steve Grubb <sgrubb@redhat.com> 0.6.9-1
Steve Grubb 518797
- Added patch for filesystem watch
Steve Grubb 518797
- Added version information to audit start message
Steve Grubb 518797
- Change netlink code to use ack in order to get error notification
Steve Grubb 518797
Steve Grubb 57646a
* Wed Mar 10 2005 Steve Grubb <sgrubb@redhat.com> 0.6.8-1
Steve Grubb 57646a
- removed the pam_loginuid library - its going to pam
Steve Grubb 57646a
Steve Grubb ac6468
* Wed Mar 9 2005 Steve Grubb <sgrubb@redhat.com> 0.6.7-1
Steve Grubb ac6468
- Fixed bug setting loginuid
Steve Grubb ac6468
- Added num_logs to configure number of logs when rotating
Steve Grubb ac6468
- Added code for rotating logs
Steve Grubb ac6468
Steve Grubb 0ff90d
* Tue Mar 8 2005 Steve Grubb <sgrubb@redhat.com> 0.6.6-1
Steve Grubb 0ff90d
- Fix audit_set_pid to try to read a reply, but its non-fatal if no reply.
Steve Grubb 0ff90d
- Remove the read status during init
Steve Grubb 0ff90d
- Change to using pthreads sync mechanism for stopping system
Steve Grubb 0ff90d
- Worker thread should ignore all signals
Steve Grubb 0ff90d
- Change main loop to use select for inbound event handling
Steve Grubb 0ff90d
- Gave pam_loginuid a "failok" option for testing
Steve Grubb 0ff90d
Steve Grubb 21c8b7
* Thu Mar 3 2005 Steve Grubb <sgrubb@redhat.com> 0.6.5-1
Steve Grubb 21c8b7
- Lots of code cleanups
Steve Grubb 21c8b7
- Added write_pid function to auditd
Steve Grubb 21c8b7
- Added audit_log to libaudit
Steve Grubb 21c8b7
- Don't check file length in foreground mode of auditd
Steve Grubb 21c8b7
- Added *if_enabled functions to send messages only if audit system is enabled
Steve Grubb 21c8b7
- If syscall name is unknown when printing rules, use the syscall number
Steve Grubb 21c8b7
- Rework the build system to produce singly threaded public libraries
Steve Grubb 21c8b7
- Create a multithreaded version of libaudit for the audit daemon's use
Steve Grubb 21c8b7
Steve Grubb 78412f
* Wed Feb 23 2005 Steve Grubb <sgrubb@redhat.com> 0.6.4-1
Steve Grubb 78412f
- Rename pam_audit to pam_loginuid to reflect what it does
Steve Grubb 78412f
- Fix bug in detecting space left on partition
Steve Grubb 78412f
- Fix bug in handling of suspended logging
Steve Grubb 78412f
David Woodhouse 668644
* Wed Feb 23 2005 David Woodhouse <dwmw2@redhat.com> 0.6.3-3
David Woodhouse 668644
- Include stdint.h in libaudit.h and require new glibc-kernheaders
David Woodhouse 668644
Steve Grubb 19531f
* Sun Feb 20 2005 Steve Grubb <sgrubb@redhat.com> 0.6.3-2
Steve Grubb 19531f
- Another lib64 correction
Steve Grubb 19531f
Steve Grubb 56b158
* Sun Feb 20 2005 Steve Grubb <sgrubb@redhat.com> 0.6.3-1
Steve Grubb 56b158
- Change pam install from /lib/security to /%{_lib}/security
Steve Grubb 56b158
- Change pam_audit to write loginuid to /proc/pid/loginuid
Steve Grubb 56b158
- Add pam_session_close handle
Steve Grubb 56b158
- Update to newest kernel headers
Steve Grubb 56b158
Steve Grubb 8fd9fa
* Fri Feb 11 2005 Steve Grubb <sgrubb@redhat.com> 0.6.2-1
Steve Grubb 8fd9fa
- New version
Steve Grubb 8fd9fa
- Add R option to auditctl to allow reading rules from file.
Steve Grubb 8fd9fa
- Do not allow task creation list to have syscall auditing
Steve Grubb 8fd9fa
- Add D option to allow deleting all rules with 1 command
Steve Grubb 8fd9fa
- Added pam_audit man page & sample.rules
Steve Grubb 8fd9fa
- Mod initscript to call auditctl to load rules at start-up
Steve Grubb 8fd9fa
- Write message to log file for daemon start up
Steve Grubb 8fd9fa
- Write message that daemon is shutting down
Steve Grubb 8fd9fa
- Modify auditd shutdown to wait until logger thread is finished
Steve Grubb 8fd9fa
- Add sample rule file to docs
Steve Grubb 8fd9fa
Steve Grubb e88a3e
* Sat Jan 08 2005 Steve Grubb <sgrubb@redhat.com> 0.6.1-1
Steve Grubb e88a3e
- New version: rework auditctl and its man pages.
Steve Grubb e88a3e
- Added admin_space_left config option as last chance before
Steve Grubb e88a3e
  running out of disk space.
Steve Grubb e88a3e
Steve Grubb 75f480
* Wed Jan 05 2005 Steve Grubb <sgrubb@redhat.com> 0.6-1
Steve Grubb 75f480
- New version
Steve Grubb 75f480
- Split package up to libs, libs-devel, and audit.
Steve Grubb 75f480
Steve Grubb 75f480
* Mon Dec 13 2004 Steve Grubb <sgrubb@redhat.com> 0.5.6-1
Steve Grubb aad931
- New version
Steve Grubb aad931
Steve Grubb 01be97
* Fri Dec 10 2004 Steve Grubb <sgrubb@redhat.com> 0.5.5-1
Steve Grubb 01be97
- New version
Steve Grubb 01be97
Steve Grubb 72b129
* Fri Dec 03 2004 Steve Grubb <sgrubb@redhat.com> 0.5.4-1
Steve Grubb 72b129
- New version
Steve Grubb 72b129
Steve Grubb c5201d
* Mon Nov 22 2004 Steve Grubb <sgrubb@redhat.com> 0.5.3-1
Steve Grubb c5201d
- New version
Steve Grubb c5201d
Steve Grubb 5a5010
* Mon Nov 15 2004 Steve Grubb <sgrubb@redhat.com> 0.5.2-1
Steve Grubb 5a5010
- New version
Steve Grubb 5a5010
Steve Grubb 654a5c
* Wed Nov 10 2004 Steve Grubb <sgrubb@redhat.com> 0.5.1-1
Steve Grubb 654a5c
- Added initscript pieces
Steve Grubb 654a5c
- New version
Steve Grubb 654a5c
Steve Grubb 654a5c
* Wed Sep  1 2004 Charlie Bennett (ccb@redhat.com) 0.5-1 
cvsdist 2c6ba5
- Initial build.
cvsdist 2c6ba5